From 3f19e9f0efafd70ef161750c2da858e190f83619 Mon Sep 17 00:00:00 2001 From: Robbe Van Herck Date: Sat, 28 Dec 2019 11:46:56 +0100 Subject: [PATCH] Minor fixes --- main.asm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/main.asm b/main.asm index b6ed11c..ebc909e 100644 --- a/main.asm +++ b/main.asm @@ -1,12 +1,15 @@ DISK_ID EQU 0x81 -org 0x7C00 -bits 16 +org 0x7C00 +bits 16 jmp .start ;;; Print string at bx .puts: +mov al, '!' +mov ah, 0x0e +int 0x10 .puts_loop: mov al, [bx] ; load the character