feat: introduced tasking, added paging (no vm), moved malloc, added

syscalls, other stuff
This commit is contained in:
2021-02-27 11:46:26 +01:00
parent 8f615b259c
commit 9f72d4bb1a
42 changed files with 907 additions and 292 deletions

View File

@@ -109,6 +109,8 @@ irq_common_stub:
.global irq14
.global irq15
.global isr128
# 0: Divide By Zero Exception
isr0:
cli
@@ -424,3 +426,9 @@ irq15:
push $47
jmp irq_common_stub
# Syscall
isr128:
cli
push $0
push $128
jmp isr_common_stub