mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-12 03:05:37 +00:00
13 lines
186 B
ArmAsm
13 lines
186 B
ArmAsm
|
.text
|
||
|
.globl _start
|
||
|
_start:
|
||
|
leal foo@gotntpoff(%ebx), %eax
|
||
|
movl (%eax), %eax
|
||
|
.globl foo
|
||
|
.section .tdata,"awT",@progbits
|
||
|
.align 4
|
||
|
.type foo, @object
|
||
|
.size foo, 4
|
||
|
foo:
|
||
|
.long 100
|