mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
19 lines
172 B
ArmAsm
19 lines
172 B
ArmAsm
|
.section .text,"ax"
|
||
|
.global _init
|
||
|
.type _init,@function
|
||
|
.align 1
|
||
|
_init:
|
||
|
nop
|
||
|
nop
|
||
|
nop
|
||
|
nop
|
||
|
|
||
|
.global _fini
|
||
|
.type _fini,@function
|
||
|
.align 1
|
||
|
_fini:
|
||
|
nop
|
||
|
nop
|
||
|
nop
|
||
|
nop
|