mirror of
https://github.com/fadden/6502bench.git
synced 2024-10-31 19:04:44 +00:00
0ac0686c7a
Modified "jump to" code to understand address range start/end lines. If there are multiple starts or ends at the same offset, we jump to the first one in the set, which is suboptimal but simpler to do. Simplified the API, embedding GoToMode in the Location object (which is where it really needs to be, to make fwd/back work right). Updated HTML export to grey out addresses in NON_ADDR sections. Changed default pseudo-op strings for address regions to ".addrs" and ".adrend", after trying a bunch of things that were worse. Added definitions for region-end pseudo-ops to Merlin32 and cc65 for display on screen. Added regression test 20260 for address region pre-labels. Fixed handling of leading underscores in platform/project symbols. These need to be escaped in 64tass output. Updated regression test 20170-external-symbols to check it.
73 lines
1.1 KiB
ArmAsm
73 lines
1.1 KiB
ArmAsm
zzz equ $103b
|
|
|
|
org $0000
|
|
dw $1000
|
|
|
|
org $1000
|
|
begin bit begin
|
|
nop
|
|
nop
|
|
nop
|
|
jmp part2
|
|
|
|
org $2000
|
|
part2 bit part2
|
|
nop
|
|
lda :local1
|
|
lda local2
|
|
lda local4
|
|
nop
|
|
nop
|
|
nop
|
|
bit b4_part3
|
|
jmp part3
|
|
|
|
:local1 dfb $81
|
|
local2 dfb $82
|
|
|
|
b4_part3
|
|
org $3000
|
|
part3 bit part3
|
|
nop
|
|
lda local2
|
|
lda :local3
|
|
lda local4
|
|
nop
|
|
nop
|
|
nop
|
|
bit _b4_part4
|
|
jmp part4
|
|
|
|
:local3 dfb $83
|
|
local4 dfb $84
|
|
|
|
org $4000
|
|
b4_part4a
|
|
org $5000
|
|
_b4_part4
|
|
org $6000
|
|
part4 bit part4
|
|
bit _b4_part4
|
|
nop
|
|
nop
|
|
nop
|
|
jmp part4a
|
|
|
|
org $500c
|
|
part4a bit part4a
|
|
bit b4_part4a
|
|
jsr part4b
|
|
org $4015
|
|
dfb $00
|
|
|
|
part4b bit part4b
|
|
bit zzz
|
|
jmp :LF000
|
|
|
|
org $f000
|
|
:LF000 nop
|
|
bne $f003
|
|
org $0000
|
|
dfb $ea
|
|
dfb $00
|