fix conout using stray DS

This commit is contained in:
Nero 2021-02-19 19:41:24 +00:00
parent a91fb3de0d
commit ec205407a7

View File

@ -8,7 +8,7 @@ section .text
; IN dl character
conout mov al, dl
mov ah, 0x0e
mov bx, [conbx]
mov bx, [cs:conbx]
int 0x10
ret