Bump changelog
[debian-beebasm.git] / examples / local-forward-branch-4.6502
blobaa06f4485d7cd51ea0851ec851dd5b5b5dcf6f69
1 org &2000
3 a = &70
5 macro load_a_and_maybe_x i, do_x
6         lda #i
7         if do_x
8                 ldx #i
9         endif
10 endmacro
12 .start
14         load_a_and_maybe_x 42, FALSE
15         load_a_and_maybe_x 65, TRUE
17 .end
19 save "test", start, end