-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstdafx.h
More file actions
47 lines (43 loc) · 1.24 KB
/
stdafx.h
File metadata and controls
47 lines (43 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**************************** stdafx.h ***********************************
* Author: Agner Fog
* Date created: 2017-04-17
* Last modified: 2021-05-08
* Version: 1.13
* Project: Binary tools for ForwardCom instruction set
* Module: stdafx.h
* Description:
* Header file for ForwardCom tools
*
* Copyright 2017-2024 GNU General Public License https://www.gnu.org/licenses
*****************************************************************************/
#pragma once
// for Microsoft Visual Studio only:
#ifdef _MSC_VER
#include "targetver.h"
#define _CRT_SECURE_NO_WARNINGS // disable warnings in Visual Studio
#define _CRT_SECURE_NO_DEPRECATE
#include <io.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <conio.h>
#endif
// for all compilers:
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <time.h>
#include <math.h> // to do: replace with <cmath>
#include "maindef.h"
#include "elf_forwardcom.h"
#include "error.h"
#include "containers.h"
#include "cmdline.h"
#include "converters.h"
#include "disassem.h"
#include "assem.h"
#include "library.h"
#include "linker.h"
#include "emulator.h"
#include "system_functions.h"