mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +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
|