Skip the copydata in kernel setup

This commit is contained in:
Byron Lathi
2023-10-28 18:31:21 -07:00
parent 2577ab2a9a
commit 59a6f13eb3

View File

@@ -38,7 +38,7 @@ _init: LDX #$FF ; Initialize stack pointer to $01FF
; Initialize memory storage ; Initialize memory storage
JSR zerobss ; Clear BSS segment (no longer fails) 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) JSR initlib ; Run constructors (This one works)
; --------------------------------------------------------------------------- ; ---------------------------------------------------------------------------