Bump changelog
[debian-beebasm.git] / examples / local-forward-branch-2.6502
blobe46fd6593bc3c2c6e32cf30583f42cea8273dea6
1 org &2000
3 macro branch_if_eq target
4         beq target
5 endmacro
7 .start
9 .ok
10         for i,1,65
11                 lda #65
12         next
13         {
14                 cmp #65:branch_if_eq ok:jmp boom:.ok
15         }
16         rts
18 .boom
19         lda #7:jsr &ffee
20         jmp boom
22 .end
24 save "test", start, end