From 9cd99f8673c659cfb3251a29a44b36f97cea8e44 Mon Sep 17 00:00:00 2001 From: Andy Kallmeyer Date: Tue, 17 Sep 2024 20:34:11 -0700 Subject: [PATCH] Fix usage of BIOS_PRINT_STRING in lisp/tester.asm after the refactor --- lisp/tester.asm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/tester.asm b/lisp/tester.asm index b0f05ec..972e847 100644 --- a/lisp/tester.asm +++ b/lisp/tester.asm @@ -204,7 +204,8 @@ print_string: pop cx %endif - mov ax, BIOS_PRINT_STRING + mov ah, BIOS_PRINT_STRING + mov al, 1 ; no attr bytes, move cursor int 0x10 ret