From acc3f782b4241685469940b5006a8efa00577ee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Fri, 23 Feb 2018 17:38:30 +0100 Subject: [PATCH] Go to newline afterwards. --- print.asm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/print.asm b/print.asm index 60cf444..fc3bd21 100644 --- a/print.asm +++ b/print.asm @@ -23,5 +23,9 @@ print_string_start: jmp print_string_start ; go back to beginning print_string_end: + mov al, 0xA + int 0x10 + mov al, 0xD + int 0x10 popa ; return the state of all the registers ret