From 14e8c697c603b9342ffcb2892fd2df26f21df917 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sun, 14 Feb 2021 00:41:47 +0100 Subject: [PATCH] Minor cleanup --- src/bootloader.asm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bootloader.asm b/src/bootloader.asm index e831fc2..101bd51 100644 --- a/src/bootloader.asm +++ b/src/bootloader.asm @@ -8,9 +8,12 @@ mov bx, hexTestPrefixString ; Hex print test (not needed but fun) call print + + pusha mov dx, 0x002e ; test the conversion call hexToASCII call println + popa jmp $ ; inf loop