From 94de27efb7f9f97d162c1cd6b0a2bb89e3fe555f Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 21 Aug 2020 23:08:16 +0200 Subject: Finished proper return of processes --- libc/crt/crt0.asm | 2 +- libc/crt/crti.asm | 13 ------------- libc/crt/crtn.asm | 9 --------- 3 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 libc/crt/crti.asm delete mode 100644 libc/crt/crtn.asm (limited to 'libc/crt') diff --git a/libc/crt/crt0.asm b/libc/crt/crt0.asm index 4d473ec..5e3080f 100644 --- a/libc/crt/crt0.asm +++ b/libc/crt/crt0.asm @@ -9,7 +9,7 @@ global _start _start: call main - push edi + push eax push 6 call sys1 jmp $ diff --git a/libc/crt/crti.asm b/libc/crt/crti.asm deleted file mode 100644 index 394aaea..0000000 --- a/libc/crt/crti.asm +++ /dev/null @@ -1,13 +0,0 @@ -; MIT License, Copyright (c) 2020 Marvin Borner - -section .init -global _init -_init: - push ebp - mov ebp, esp - -section .fini -global _fini -fini: - push ebp - mov ebp, esp diff --git a/libc/crt/crtn.asm b/libc/crt/crtn.asm deleted file mode 100644 index f20ec6a..0000000 --- a/libc/crt/crtn.asm +++ /dev/null @@ -1,9 +0,0 @@ -; MIT License, Copyright (c) 2020 Marvin Borner - -section .init - pop ebp - ret - -section .fini - pop ebp - ret -- cgit v1.2.3