aboutsummaryrefslogtreecommitdiffstats
path: root/src/boot.asm
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/boot.asm2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/boot.asm b/src/boot.asm
index 9d9571e..0a5f2e3 100644
--- a/src/boot.asm
+++ b/src/boot.asm
@@ -56,6 +56,8 @@ KernelInit:
ld a, HIGH(wKernelPCB)
ld [wCurProc+1], a
call fs_init ; mount the disk (format on first boot; persists)
+ call term_init ; set up the LCD text terminal
+ call term_test ; render a test pattern
; --- spawn the init task (pid 1); it fork()s the rest ---
ld hl, TaskInit