Skip to content

Commit a47a1a7

Browse files
committed
Fixed some changes in the code that broke the compilation
1 parent 82e0ac2 commit a47a1a7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

12-Home computer/LM80C-firmware-r15.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
; ------------------------------------------------------------------------------
5454
; include the latest version of the bootloader: this sets up the address aliases
5555
; 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"
5757

5858
; configure the VDP
5959
#include "../include/vdp/vdp-r15.asm"
@@ -67,4 +67,4 @@
6767
; END OF ASSEMBLY SOURCE
6868
#end
6969

70-
;-------------------------------------------------------------------------------
70+
;-------------------------------------------------------------------------------

include/vdp/vdp-r13.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ LOADCHARSET: ; reg. B containts the # of patterns to be loaded
384384
ld c,VDP_SET ; load VDP address into C
385385
out (c),l ; send low byte of address
386386
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
388388
NXTCHAR: ld d,$08 ; 8 bytes per pattern char
389389
SENDCHRPTRNS: ld a,(hl) ; load byte to send to VDP
390390
out (VDP_DAT),a ; write byte into VRAM

include/vdp/vdp-r14.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ LOADCHARSET: ; reg. B containts the # of patterns to be loaded
446446
ld c,VDP_SET ; load VDP address into C
447447
out (c),l ; send low byte of address
448448
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
450450
NXTCHAR: ld d,$08 ; 8 bytes per pattern char
451451
SENDCHRPTRNS: ld a,(hl) ; load byte to send to VDP
452452
out (VDP_DAT),a ; write byte into VRAM

0 commit comments

Comments
 (0)