File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 53
53
; ------------------------------------------------------------------------------
54
54
; include the latest version of the bootloader: this sets up the address aliases
55
55
; configure the hardware, checks if warm or cold startup and loads the BASIC interpreter
56
- #include "../include/bootloader/bootloader-r12 .asm"
56
+ #include "../include/bootloader/bootloader-r13 .asm"
57
57
58
58
; configure the VDP
59
59
#include "../include/vdp/vdp-r15.asm"
67
67
; END OF ASSEMBLY SOURCE
68
68
#end
69
69
70
- ;-------------------------------------------------------------------------------
70
+ ;-------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ LOADCHARSET: ; reg. B containts the # of patterns to be loaded
384
384
ld c , VDP_SET ; load VDP address into C
385
385
out (c) , l ; send low byte of address
386
386
out (c) , h ; send high byte
387
- ld hl , CHARSET ; address of first byte of first pattern into ROM
387
+ ld hl , CHRST68 ; address of first byte of first pattern into ROM
388
388
NXTCHAR: ld d , $ 08 ; 8 bytes per pattern char
389
389
SENDCHRPTRNS: ld a , (hl) ; load byte to send to VDP
390
390
out (VDP_D AT ) , a ; write byte into VRAM
Original file line number Diff line number Diff line change @@ -446,7 +446,7 @@ LOADCHARSET: ; reg. B containts the # of patterns to be loaded
446
446
ld c , VDP_SET ; load VDP address into C
447
447
out (c) , l ; send low byte of address
448
448
out (c) , h ; send high byte
449
- ld hl , CHARSET ; address of first byte of first pattern into ROM
449
+ ld hl , CHRST68 ; address of first byte of first pattern into ROM
450
450
NXTCHAR: ld d , $ 08 ; 8 bytes per pattern char
451
451
SENDCHRPTRNS: ld a , (hl) ; load byte to send to VDP
452
452
out (VDP_D AT ) , a ; write byte into VRAM
You can’t perform that action at this time.
0 commit comments