Skip to content

Commit

Permalink
optromloader.asm: Improve comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
rvalles committed Sep 17, 2021
1 parent 90bb610 commit c1ceeb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions optromloader.asm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ start:
mov si,banner_str
call printstr
;*** Load first block of ROM image (containing ROM header)
mov al,1 ;block number
mov al,1 ;block number (0 bootloader, 1+ ROM image)
mov bx,bootblock_end ;target addr
call readblock
;*** Check ROM magic value
Expand Down Expand Up @@ -89,7 +89,7 @@ start:
jz .checksum_good
mov si,checksum_bad_str
call printstr
jmp $
jmp $ ;deadend infinite loop
.checksum_good:
mov si,checksum_good_str
call printstr
Expand Down

0 comments on commit c1ceeb4

Please sign in to comment.