1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-01 05:41:34 +00:00
C02/work/if.c02
2018-08-11 00:18:23 -04: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;