1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-07-03 06:29:27 +00:00
C02/test/if.c02
2018-01-28 14:47:06 -05:00

13 lines
117 B
Plaintext

/* Test If/Then/Else */
#pragma origin $0200
char b,c,d,e;
if (b:-) b=c;
else if (!b) b=d;
else b=e;
goto exit;