1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-17 05:29:30 +00:00
C02/work/if.c02

13 lines
117 B
Plaintext
Raw Permalink Normal View History

2018-01-28 19:47:06 +00:00
/* 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;