1
0
mirror of https://github.com/fachat/xa65.git synced 2024-06-08 23:29:30 +00:00
xa65/xa/tests/reset_segment/test2.s
Andre Fachat 4b54dd031e xa-2.3.10
2019-11-10 13:32:56 +01:00

24 lines
219 B
ArmAsm

; test absolute code embedded into relocatable mode
.text
lda foo
lda bar
; go into absolute mode
*=$1234
foo .asc "absolute",0
lda foo
lda bar
; go back into relocatble mode
*=
bar .asc "reloc",0