From 2fde087fdd9e1ddde7141224acdad3fe6e802977 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 25 May 2018 00:23:25 +0100 Subject: [PATCH] trs80m1: clear screen on boot --- Kernel/platform-trs80m1/crt0.s | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Kernel/platform-trs80m1/crt0.s b/Kernel/platform-trs80m1/crt0.s index bef22630..23171d67 100644 --- a/Kernel/platform-trs80m1/crt0.s +++ b/Kernel/platform-trs80m1/crt0.s @@ -28,6 +28,7 @@ .globl _fuzix_main .globl init_early .globl init_hardware + .globl _vtinit .globl s__DATA .globl l__DATA .globl s__BUFFERS @@ -69,6 +70,9 @@ start: call init_early call init_hardware push af + call _vtinit + pop af + push af call _fuzix_main pop af di -- 2.34.1