diff --git a/kernel/char.asm b/kernel/char.asm index cf6ea6e..4c1998e 100644 --- a/kernel/char.asm +++ b/kernel/char.asm @@ -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