mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
35 lines
365 B
ArmAsm
35 lines
365 B
ArmAsm
.text
|
|
.arm
|
|
.globl foo
|
|
.type foo, %function
|
|
foo:
|
|
ldr r0, 1f
|
|
2:
|
|
blx lib_gd2(tlscall)
|
|
nop
|
|
|
|
1:
|
|
.word lib_gd2(tlsdesc) + (. - 2b)
|
|
|
|
.thumb
|
|
.globl bar
|
|
.type bar, %function
|
|
bar:
|
|
ldr r0,1f
|
|
2:
|
|
blx lib_gd2(tlscall)
|
|
nop
|
|
|
|
.p2align 2
|
|
1:
|
|
.word lib_gd2(tlsdesc) + (. - 2b + 1)
|
|
|
|
.globl _start
|
|
_start:
|
|
|
|
.section .tdata,"awT"
|
|
.global lib_gd2
|
|
lib_gd2:
|
|
.space 4
|
|
|