From 500fe37e9a3bb21ed214df0c7bb983a659852f0b Mon Sep 17 00:00:00 2001 From: Garrett Weaver Date: Sat, 15 Sep 2018 13:17:40 -0700 Subject: [PATCH] Fixed assembler error where 05-bootsector-functions-strings/boot_sect_print_hex.asm would not find print on line 40. --- 05-bootsector-functions-strings/boot_sect_print_hex.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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