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.
This commit is contained in:
John Lorentzson 2025-07-11 14:23:44 +02:00
parent 1ebf191797
commit 1b7eaa30aa

View file

@ -3,6 +3,7 @@
CLKMASK = %00000010 CLKMASK = %00000010
CTRL2 = $DC00 CTRL2 = $DC00
.org $80d
coldstart: coldstart:
lda #$0 lda #$0
sta $400 sta $400
@ -14,12 +15,12 @@ waitstart:
sta $d020 sta $d020
teststart: teststart:
jsr check_for_load_start jsr check_for_load_start
jmp $c000
beq teststart
bcs @error bcs @error
beq teststart
jmp $c000
jmp $c000 jmp $c000
@error: @error:
lda #0 lda #1
sta $0400 sta $0400
rts rts