Ver Fonte

lesson 5, functions and strings

Carlos Fenollosa há 10 anos atrás
pai
commit
cdddc184b2
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      05-bootsector-functions-strings/boot_sect_main.asm

+ 1 - 1
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