comparison fluid-mnf/calplus/standard.h @ 311:9cecc930d78f

fluid-mnf: original source from TI, defenestrated line endings and rearranged directory structure, but no *.[ch] source file content changes yet
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 29 Feb 2020 05:36:07 +0000
parents
children
comparison
equal deleted inserted replaced
310:ae39d76d5b7a 311:9cecc930d78f
1 #ifndef _STANDARD_H_
2 #define _STANDARD_H_
3
4 #define _PC_RAM_LOADER_
5
6 typedef unsigned char UWORD8;
7 typedef unsigned short int UWORD16;
8 typedef unsigned long int UWORD32;
9
10 typedef unsigned char BOOLEAN;
11
12 enum {
13 C_FALSE = 0,
14 C_TRUE = 1
15 };
16
17 #endif