[libc] Remove old libc

Removing the very old PDCLib-based libc, in preparation for adding the
new one.
This commit is contained in:
Justin C. Miller
2022-02-06 12:26:48 -08:00
parent 4545256b49
commit 5ddac353a0
190 changed files with 0 additions and 16073 deletions

View File

@@ -1,5 +0,0 @@
extern j6_process_exit
global _PDCLIB_Exit
_PDCLIB_Exit:
; arg should already be in rdi
jmp j6_process_exit

View File

@@ -1,17 +0,0 @@
extern main
extern exit
extern _init_libj6
global _start:function (_start.end - _start)
_start:
mov rbp, rsp
mov rdi, rsp
call _init_libj6
pop rdi
mov rsi, rsp
call main
mov rdi, rax
call exit
.end: