RosettaCodeData/Task/Conditional-structures/Z80-Assembly/conditional-structures-2.z80
2023-07-01 13:44:08 -04:00

8 lines
111 B
Z80 Assembly

cp 20
jr nz,Else
call doThis
;execution returns here after the call
jr done
Else:
call doThat
done