diff options
Diffstat (limited to 'arch/x86_64/src/boot/crti.s')
| -rw-r--r-- | arch/x86_64/src/boot/crti.s | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/x86_64/src/boot/crti.s b/arch/x86_64/src/boot/crti.s new file mode 100644 index 0000000..26878fe --- /dev/null +++ b/arch/x86_64/src/boot/crti.s @@ -0,0 +1,13 @@ +.code64 + +.section .init +.global _init +_init: + push %rbp + movq %rsp, %rbp + +.section .fini +.global _fini +_fini: + push %rbp + movq %rsp, %rbp |
