mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-29 02:31:25 +00:00
11 lines
242 B
ArmAsm
11 lines
242 B
ArmAsm
.text
|
|
.weak __start_my_section
|
|
.weak __stop_my_section
|
|
.globl _start
|
|
.type _start, @function
|
|
_start:
|
|
movl _DYNAMIC@GOT(%ecx), %eax
|
|
movl __start_my_section@GOT(%ecx), %eax
|
|
movl __stop_my_section@GOT(%ecx), %eax
|
|
.size _start, .-_start
|