1
0
mirror of https://github.com/cfenollosa/os-tutorial.git synced 2024-10-27 20:34:19 +00:00

Fixed assembler error where 05-bootsector-functions-strings/boot_sect_print_hex.asm would not find print on line 40.

This commit is contained in:
Garrett Weaver 2018-09-15 13:17:40 -07:00
parent 5b88226edf
commit 500fe37e9a

View File

@ -37,7 +37,7 @@ end:
; prepare the parameter and call the function
; remember that print receives parameters in 'bx'
mov bx, HEX_OUT
call print
call print_hex
popa
ret