mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 01:03:13 +00:00
16 lines
180 B
ArmAsm
Vendored
16 lines
180 B
ArmAsm
Vendored
.syntax unified
|
|
|
|
.section .init
|
|
.global _init
|
|
.type _init,%function
|
|
.align 2
|
|
_init:
|
|
push {r0,lr}
|
|
|
|
.section .fini
|
|
.global _fini
|
|
.type _fini,%function
|
|
.align 2
|
|
_fini:
|
|
push {r0,lr}
|