From cdddc184b22ec158e29b633d05486717986271c9 Mon Sep 17 00:00:00 2001 From: Carlos Fenollosa Date: Sun, 5 Oct 2014 13:06:43 +0200 Subject: [PATCH] lesson 5, functions and strings --- 05-bootsector-functions-strings/boot_sect_main.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05-bootsector-functions-strings/boot_sect_main.asm b/05-bootsector-functions-strings/boot_sect_main.asm index d6dafd8..8fc261d 100644 --- a/05-bootsector-functions-strings/boot_sect_main.asm +++ b/05-bootsector-functions-strings/boot_sect_main.asm @@ -5,12 +5,12 @@ mov bx, HELLO call print ; We will get fancy and print a newline +; feel free to integrate newline code into "boot_sect_print" mov ah, 0x0e mov al, 0x0A ; newline char int 0x10 mov al, 0x0D ; carriage return char int 0x10 -; feel free to integrate this into "boot_sect_print" if you want to mov bx, GOODBYE call print