Subversion Repositories freemyipod

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 14
Line 38... Line 38...
38
#define INITCODE_ATTR __attribute__ ((section(".initcode")))
38
#define INITCODE_ATTR __attribute__ ((section(".initcode")))
39
#define INITCONST_ATTR __attribute__ ((section(".initrodata")))
39
#define INITCONST_ATTR __attribute__ ((section(".initrodata")))
40
#define INITDATA_ATTR __attribute__ ((section(".initdata")))
40
#define INITDATA_ATTR __attribute__ ((section(".initdata")))
41
#define INITBSS_ATTR __attribute__ ((section(".initbss")))
41
#define INITBSS_ATTR __attribute__ ((section(".initbss")))
42
 
42
 
-
 
43
#define bool int
-
 
44
#define true 1
-
 
45
#define false 0
-
 
46
 
43
#include "target.h"
47
#include "target.h"
44
 
48
 
-
 
49
#ifndef MAX_THREADS
-
 
50
#define MAX_THREADS 32
-
 
51
#endif
-
 
52
 
45
#endif
53
#endif