From 5883f69491d9db1f14eaf6695f60d1cb500c6c52 Mon Sep 17 00:00:00 2001 From: Blake Burgess Date: Sat, 8 Dec 2018 12:07:51 -0500 Subject: [PATCH] e_dos repeatedly outputs e --- e_dos.asm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e_dos.asm b/e_dos.asm index 6356a62..dd04e3c 100644 --- a/e_dos.asm +++ b/e_dos.asm @@ -1,6 +1,7 @@ org 0x100 +putE: mov ah, 0x0E mov al, 'e' int 0x10 -ret +jmp putE