mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
12 lines
119 B
ArmAsm
12 lines
119 B
ArmAsm
|
.macro makeref,sym
|
||
|
lw $5,%got(\sym\@)($gp)
|
||
|
.endm
|
||
|
|
||
|
.globl f3
|
||
|
.ent f3
|
||
|
f3:
|
||
|
.rept 8000
|
||
|
makeref frob
|
||
|
.endr
|
||
|
.end f3
|