From 28a69d9ed0440441ac23d328586fa6643a61e630 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 19 Feb 2019 14:35:14 +0000 Subject: [PATCH] nc100: fix weird crash caused by _HOME segment divulong was added by the compiler in _HOME. As we didn't list _HOME in crt0 it ended up being recycled --- Kernel/platform-amstradnc/crt0.s | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/platform-amstradnc/crt0.s b/Kernel/platform-amstradnc/crt0.s index c4f085da..46ebec5a 100644 --- a/Kernel/platform-amstradnc/crt0.s +++ b/Kernel/platform-amstradnc/crt0.s @@ -4,6 +4,7 @@ ; when they are first seen. .area _CODE .area _CODE2 + .area _HOME .area _FONT .area _VIDEO .area _CONST -- 2.34.1