mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
43 lines
472 B
ArmAsm
43 lines
472 B
ArmAsm
|
.macro define,name
|
||
|
.text
|
||
|
.type \name,%gnu_indirect_function
|
||
|
\name:
|
||
|
mov pc,lr
|
||
|
.size \name,.-\name
|
||
|
.endm
|
||
|
|
||
|
.macro test_relocs,name
|
||
|
bl \name(PLT)
|
||
|
ldr r4,1f
|
||
|
ldr r4,2f
|
||
|
1:
|
||
|
.word \name(GOT)
|
||
|
2:
|
||
|
.word \name(GOT_PREL)
|
||
|
|
||
|
.data
|
||
|
.word \name
|
||
|
.word \name - .
|
||
|
.text
|
||
|
.endm
|
||
|
|
||
|
.globl f3
|
||
|
.hidden f3
|
||
|
|
||
|
define f1
|
||
|
define f3
|
||
|
|
||
|
.data
|
||
|
foo:
|
||
|
.word 0x11223344
|
||
|
|
||
|
.text
|
||
|
.globl arm
|
||
|
arm:
|
||
|
test_relocs foo
|
||
|
test_relocs f1
|
||
|
test_relocs f2
|
||
|
test_relocs f3
|
||
|
test_relocs f4
|
||
|
.size arm,.-arm
|