mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
14 lines
183 B
ArmAsm
14 lines
183 B
ArmAsm
.section .init
|
|
.global _init
|
|
.type _init, @function
|
|
_init:
|
|
// push %rbp
|
|
// movq %rsp, %rbp
|
|
|
|
.section .fini
|
|
.global _fini
|
|
.type _fini, @function
|
|
_fini:
|
|
// push %rbp
|
|
// movq %rsp, %rbp
|