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 ; prepare the parameter and call the function
; remember that print receives parameters in 'bx' ; remember that print receives parameters in 'bx'
mov bx, HEX_OUT mov bx, HEX_OUT
call print call print_hex
popa popa
ret ret