RosettaCodeData/Task/Logical-operations/6502-Assembly/logical-operations-1.6502

8 lines
158 B
Plaintext

LDA myBoolean
BNE isTrue
;code that would execute if myBoolean is false, goes here.
RTS
isTrue:
;code that would execute if myBoolean is true, goes here.
RTS