From eba24c29901f525797fded0ea8ef4220f41db1d5 Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Sat, 26 Aug 2023 13:42:06 -0700 Subject: [PATCH] Disable inits which fail --- hw/efinix_fpga/debug_profile.wizard.json | 2 +- hw/efinix_fpga/super6502.xml | 2 +- sw/kernel/boot.s | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hw/efinix_fpga/debug_profile.wizard.json b/hw/efinix_fpga/debug_profile.wizard.json index 90252cb..685445b 100644 --- a/hw/efinix_fpga/debug_profile.wizard.json +++ b/hw/efinix_fpga/debug_profile.wizard.json @@ -3,7 +3,7 @@ { "name": "la0", "type": "la", - "uuid": "bf43fc588d24492a92af49261253b787", + "uuid": "51d5f9c5395344da8c48559f580e066a", "trigin_en": false, "trigout_en": false, "auto_inserted": true, diff --git a/hw/efinix_fpga/super6502.xml b/hw/efinix_fpga/super6502.xml index dd0f428..88d116f 100644 --- a/hw/efinix_fpga/super6502.xml +++ b/hw/efinix_fpga/super6502.xml @@ -1,5 +1,5 @@ - + diff --git a/sw/kernel/boot.s b/sw/kernel/boot.s index 6609282..d2e1c6a 100644 --- a/sw/kernel/boot.s +++ b/sw/kernel/boot.s @@ -37,9 +37,9 @@ _init: LDX #$FF ; Initialize stack pointer to $01FF ; --------------------------------------------------------------------------- ; Initialize memory storage - ; JSR zerobss ; Clear BSS segment - ; JSR copydata ; Initialize DATA segment - ; JSR initlib ; Run constructors + ; JSR zerobss ; Clear BSS segment (this fails) + ; JSR copydata ; Initialize DATA segment (this also fails. but prints something) + JSR initlib ; Run constructors (This one works) ; --------------------------------------------------------------------------- ; Call main()