mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-05 22:32:37 +00:00
12 lines
118 B
ArmAsm
12 lines
118 B
ArmAsm
|
.macro makeref,sym
|
||
|
lw $5,%got(\sym\@)($gp)
|
||
|
.endm
|
||
|
|
||
|
.globl f2
|
||
|
.ent f2
|
||
|
f2:
|
||
|
.rept 8000
|
||
|
makeref bar
|
||
|
.endr
|
||
|
.end f2
|