kernel: fix banner printing
This commit is contained in:
parent
f0a000b7d1
commit
cc3fe6c4ee
@ -39,6 +39,8 @@ intlp: movsw
|
||||
stosw
|
||||
loop intlp
|
||||
|
||||
mov dx, banner
|
||||
call puts
|
||||
|
||||
call drives_init
|
||||
|
||||
@ -176,6 +178,7 @@ conin: mov ah, 1
|
||||
; DOS 1+ 9h - WRITE STRING TO STANDARD OUTPUT
|
||||
; IN ds:dx '$'-terminated string
|
||||
puts: push si
|
||||
mov si, dx
|
||||
.loop: lodsb
|
||||
cmp al, '$'
|
||||
je .end
|
||||
|
Loading…
Reference in New Issue
Block a user