Updated the PIC18F6720 port, and added PIC18F97J60 port. Both compile and build but were untested on actual hardware.

This commit is contained in:
skarg
2016-05-30 14:55:50 +00:00
parent 7721c3d9ff
commit 3fd93c77d5
37 changed files with 6449 additions and 254 deletions
+28
View File
@@ -0,0 +1,28 @@
#ifndef STDBOOL_H
#define STDBOOL_H
/* C99 Boolean types for compilers without C99 support */
#ifndef __cplusplus
typedef char _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