aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/crt/crti.asm
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libc/crt/crti.asm')
-rw-r--r--libs/libc/crt/crti.asm9
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/libc/crt/crti.asm b/libs/libc/crt/crti.asm
new file mode 100644
index 0000000..e139704
--- /dev/null
+++ b/libs/libc/crt/crti.asm
@@ -0,0 +1,9 @@
+global _init
+section .init
+_init:
+ push ebp
+
+global _fini
+section .fini
+_fini:
+ push ebp