From: Alan Cox Date: Thu, 24 May 2018 23:23:25 +0000 (+0100) Subject: trs80m1: clear screen on boot X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=2fde087fdd9e1ddde7141224acdad3fe6e802977;p=FUZIX.git trs80m1: clear screen on boot --- 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