Fixed conversion mistake

This commit is contained in:
Dreaded_X 2021-06-19 02:42:53 +02:00
parent 66f9451983
commit db9a25ca04

View File

@ -13,7 +13,7 @@ main:
ld c, #0x01 ; LBA bits 0 to 7 ld c, #0x01 ; LBA bits 0 to 7
ld b, #0x00 ; LBA bits 8 to 15 ld b, #0x00 ; LBA bits 8 to 15
ld e, #0x00 ; LBA bits 16 to 23 ld e, #0x00 ; LBA bits 16 to 23
ld hl, (0xE400) ; Memory address -- start of CCP ld hl, #0xE400 ; Memory address -- start of CCP
loop: loop:
call disk_read ; Subroutine in ROM call disk_read ; Subroutine in ROM