RosettaCodeData/Task/Integer-overflow/6502-Assembly/integer-overflow-1.6502

5 lines
74 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
LDA #$7F
CLC
ADC #$01
BVS ErrorHandler ;this branch will always be taken.