From 59a6f13eb393e2a8b869bb2a517d1bb7fe961698 Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Sat, 28 Oct 2023 18:31:21 -0700 Subject: [PATCH] Skip the copydata in kernel setup --- sw/kernel/boot.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/kernel/boot.s b/sw/kernel/boot.s index d762892..93bf54b 100644 --- a/sw/kernel/boot.s +++ b/sw/kernel/boot.s @@ -38,7 +38,7 @@ _init: LDX #$FF ; Initialize stack pointer to $01FF ; Initialize memory storage JSR zerobss ; Clear BSS segment (no longer fails) - JSR copydata ; Initialize DATA segment (this also fails. but prints something) + ; JSR copydata ; Initialize DATA segment (this also fails. but prints something) JSR initlib ; Run constructors (This one works) ; ---------------------------------------------------------------------------