lesson 5, functions and strings

pull/6/head
Carlos Fenollosa 10 years ago
parent 96e8ccff0f
commit cdddc184b2

@ -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

Loading…
Cancel
Save