repo.or.cz
/
debian-beebasm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bump changelog
[debian-beebasm.git]
/
examples
/
local-forward-branch-4.6502
blob
aa06f4485d7cd51ea0851ec851dd5b5b5dcf6f69
1
org &2000
2
3
a = &70
4
5
macro load_a_and_maybe_x i, do_x
6
lda #i
7
if do_x
8
ldx #i
9
endif
10
endmacro
11
12
.start
13
14
load_a_and_maybe_x 42, FALSE
15
load_a_and_maybe_x 65, TRUE
16
17
.end
18
19
save "test", start, end