mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-20 02:29:11 +00:00
16 lines
231 B
ArmAsm
16 lines
231 B
ArmAsm
|
|
||
|
.type foo, %function
|
||
|
.set foo, 0x100000
|
||
|
|
||
|
arm: bl 0x100000
|
||
|
b 0x100000
|
||
|
blx 0x100000
|
||
|
bl foo
|
||
|
|
||
|
.syntax unified
|
||
|
.thumb
|
||
|
thumb: bl 0x100000
|
||
|
b 0x100000
|
||
|
blx 0x100000
|
||
|
@ bl foo is broken - gas fails to preserve the symbol reference
|