summaryrefslogtreecommitdiff
path: root/kernel.asm
diff options
context:
space:
mode:
Diffstat (limited to 'kernel.asm')
-rw-r--r--kernel.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel.asm b/kernel.asm
index 46ab984..3d6608b 100644
--- a/kernel.asm
+++ b/kernel.asm
@@ -7,6 +7,7 @@ jmp kmain
%include "disk.asm"
%include "console.asm"
%include "stdio.asm"
+%include "terminal.asm" ; eventually will become its own "program"
kmain:
@@ -51,8 +52,7 @@ kmain:
add sp, 12
.mainloop:
- call kbd_read
- call putc
+ call terminal
jmp .mainloop