Skip to content

Commit

Permalink
Merge pull request #15 from chiralos/main
Browse files Browse the repository at this point in the history
romdisk: fix load command parameter length
  • Loading branch information
Zeal8bit authored Nov 26, 2023
2 parents 6503a4b + 7625b6c commit eea1592
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions romdisk/uart.asm
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ _load_code_rom:
ld sp, 0xffff
; Jump to the user program (0x4000) in case of no error
ex de, hl
; We aren't supplying a parameter string in de, so set length to zero
ld bc,0 ;
jp (hl)
_load_read_error:
push hl
Expand Down

0 comments on commit eea1592

Please sign in to comment.