mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 16:34:15 +00:00
9 lines
91 B
Plaintext
9 lines
91 B
Plaintext
/* Test C02 define directive */
|
|
|
|
#define TRUE = $FF
|
|
#define FALSE = 0
|
|
|
|
char b;
|
|
|
|
b = #TRUE;
|