mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-14 08:33:16 +00:00
9 lines
168 B
ArmAsm
9 lines
168 B
ArmAsm
; Just something allocating 128 bytes TLS data.
|
|
.section .tdata,"awT",@progbits
|
|
.p2align 2
|
|
.type tls128, @object
|
|
tls128:
|
|
.long 47
|
|
.fill 124,1,0
|
|
.size tls128, 128
|