RosettaCodeData/Task/Logical-operations/6502-Assembly/logical-operations-1.6502
2023-07-01 13:44:08 -04:00

7 lines
158 B
Text

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