Skip to content

Commit

Permalink
remove todo text
Browse files Browse the repository at this point in the history
  • Loading branch information
metavee committed Jul 30, 2024
1 parent 7d41cb6 commit d1af35b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootloader.asm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ start:
; Load the second sector from the disk
; Use the drive number in 'boot_drive'
mov ah, 0x02 ; BIOS read sector function
mov al, 0x02 ; Number of sectors to read TODO: parameterize this
mov al, 0x02 ; Number of sectors to read
mov ch, 0x00 ; Cylinder number (0)
mov cl, 0x02 ; Sector number (1-based, so 2 means second sector)
mov dh, 0x00 ; Head number (0)
Expand Down

0 comments on commit d1af35b

Please sign in to comment.