9 lines
60 B
Z80 Assembly
9 lines
60 B
Z80 Assembly
char x;
|
|
if (x == 20)
|
|
{
|
|
doThis();
|
|
}
|
|
else
|
|
{
|
|
doThat();
|
|
}
|