7 lines
169 B
Text
7 lines
169 B
Text
|
|
LDA #200
|
||
|
|
CMP Variable
|
||
|
|
BEQ #3 ;if equal, skip ahead 3 bytes...
|
||
|
|
CLC ;if unequal, continue executing instructions
|
||
|
|
ADC #1
|
||
|
|
STA OtherVariable ; ...to here.
|