diff options
author | Marvin Borner | 2021-04-04 00:11:57 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-04 00:11:57 +0200 |
commit | acffb01f7a8474d4adf82049690380d63faba782 (patch) | |
tree | c593a6d7e4c71b793e3d806348f75ede663f36a1 /libs/libc/crt/crti.asm | |
parent | 7a64bdbbcf14023370b90b22de73c2f61a6f84ac (diff) |
Added missing crt files
Diffstat (limited to 'libs/libc/crt/crti.asm')
-rw-r--r-- | libs/libc/crt/crti.asm | 9 |
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 |