diff --git a/05-bootsector-functions-strings/boot_sect_print_hex.asm b/05-bootsector-functions-strings/boot_sect_print_hex.asm index b537ef8..760d3da 100644 --- a/05-bootsector-functions-strings/boot_sect_print_hex.asm +++ b/05-bootsector-functions-strings/boot_sect_print_hex.asm @@ -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