mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
15 lines
226 B
ArmAsm
15 lines
226 B
ArmAsm
|
# 32-bit size relocation in shared object
|
||
|
.comm xxx,40,32
|
||
|
.data
|
||
|
.p2align 2
|
||
|
.long xxx@SIZE
|
||
|
.long xxx@SIZE-30
|
||
|
.long xxx@SIZE+30
|
||
|
.long yyy@SIZE
|
||
|
.long zzz@SIZE
|
||
|
.globl yyy
|
||
|
.type yyy, %object
|
||
|
.size yyy, 40
|
||
|
yyy:
|
||
|
.zero 40
|