Inital ARM7 code. Still needs work

This commit is contained in:
s3rock
2007-06-21 20:19:27 +00:00
parent bddafd3c86
commit e6c21e9bb7
4 changed files with 403 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#ifndef STDBOOL_H
#define STDBOOL_H
/* C99 Boolean types for compilers without C99 support */
#ifndef __cplusplus
//typedef int _Bool;
#ifndef bool
#define bool _Bool
#endif
#ifndef true
#define true 1
#endif
#ifndef false
#define false 0
#endif
#define __bool_true_false_are_defined 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
#endif