1
0
mirror of https://github.com/fachat/xa65.git synced 2024-07-05 09:28:55 +00:00
xa65/xa/tests/reset_segment/test2.s

24 lines
219 B
ArmAsm
Raw Normal View History

2019-11-10 12:32:56 +00:00
; 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