Compare commits

..

No commits in common. "2aaae86c8a1df2205dbd45e3575928a1392815f9" and "d63c2cbd69aa87da8bdcd8cef3e3e71d7b251cf5" have entirely different histories.

View file

@ -21,6 +21,9 @@ mov dh, HEIGHT
mov dl, WIDTH mov dl, WIDTH
int 0x10 int 0x10
;; Turn on interrupts
sti
;; Set cursor to bottom of screen ;; Set cursor to bottom of screen
mov dh, HEIGHT mov dh, HEIGHT
mov dl, 0x00 mov dl, 0x00
@ -28,10 +31,33 @@ mov bh, 0x00
mov ah, 0x02 mov ah, 0x02
int 0x10 int 0x10
;; Start serial connection
mov ah, 0
mov al, 0b11100011
mov dx, 0
int 0x14
.loop: .loop:
;; Read character ;; Print a '.' to debug
mov ah, 0x00 mov ah, 0x01
int 0x16 mov al, '.'
mov dx, 0
int 0x14
;; Check status of COM1
mov ah, 0x03
mov dx, 0
int 0x14
;; If not ok, wait
and ah, 0x01
jz .loop
;; If ok, start reading character
mov ah, 0x02
mov dx, 0
int 0x14
cmp al, 0x0d ; newline cmp al, 0x0d ; newline
je .newline je .newline
@ -43,18 +69,6 @@ int 0x10
;; Read character ;; Read character
mov ah, 0x00 mov ah, 0x00
int 0x16 int 0x16
;; Read character is in al
sub al, 'a'
mov bl, al
shl bl, 0x4
;; Read character
mov ah, 0x00
int 0x16
;; Read character is in al
sub al, 'a'
or al, bl
mov [color_mode], al mov [color_mode], al
jmp .loop jmp .loop
@ -84,11 +98,11 @@ int 0x10
.nonewline: .nonewline:
;; Write character ;; Write character
mov ah, 0x09 mov ah, 0x09
mov bh, 0x00 mov bh, 0x00
mov bl, [color_mode] mov bl, [color_mode]
mov cx, 0x01 mov cx, 0x01
int 0x10 int 0x10
;; Get current cursor position ;; Get current cursor position
mov ah, 0x03 mov ah, 0x03
@ -128,7 +142,7 @@ int 0x10
halt: hlt halt: hlt
color_mode: db 0x02 color_mode: db 0x05
times 510 - ($ - $$) db 0 times 510 - ($ - $$) db 0
dw 0xAA55 dw 0xAA55