mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-19 06:31:02 +00:00
21 lines
400 B
ArmAsm
21 lines
400 B
ArmAsm
|
org $2000
|
||
|
jmp L2100
|
||
|
|
||
|
asc 'hello, ' ;string should be split by no-op addr change
|
||
|
org $200a
|
||
|
asc 'world'
|
||
|
dfb $80
|
||
|
|
||
|
org $2100
|
||
|
L2100 lda #$00
|
||
|
sta addr1-1 ;edit this operand
|
||
|
sta addr1
|
||
|
sta addr1+1
|
||
|
jmp L2121
|
||
|
|
||
|
asc 'testing stuff.'
|
||
|
addr1 asc '!?---'
|
||
|
|
||
|
L2121 rts
|
||
|
|