1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-11-22 16:34:15 +00:00
C02/test/define.c02

9 lines
91 B
Plaintext
Raw Normal View History

2018-01-28 19:47:06 +00:00
/* Test C02 define directive */
#define TRUE = $FF
#define FALSE = 0
char b;
b = #TRUE;