From 1b7eaa30aa1a98d49a227e0a02042b20989b6c22 Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Fri, 11 Jul 2025 14:23:44 +0200 Subject: [PATCH] Some minor fixes in loader.s that probably don't mean much So technically there's a big problem here, it gives us no time to run the transfer, but I'm pretty sure I tested before adding that with no difference. Who knows, but it definitely doesn't help. --- wip-duuqnd/loader.s | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wip-duuqnd/loader.s b/wip-duuqnd/loader.s index 2bdaa17..29b1bbd 100644 --- a/wip-duuqnd/loader.s +++ b/wip-duuqnd/loader.s @@ -3,6 +3,7 @@ CLKMASK = %00000010 CTRL2 = $DC00 + .org $80d coldstart: lda #$0 sta $400 @@ -14,12 +15,12 @@ waitstart: sta $d020 teststart: jsr check_for_load_start - jmp $c000 - beq teststart bcs @error + beq teststart + jmp $c000 jmp $c000 @error: - lda #0 + lda #1 sta $0400 rts