RosettaCodeData/Task/Conditional-structures/Z80-Assembly/conditional-structures-2.z80

9 lines
111 B
Z80 Assembly

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