Added input ability to BASIC

This commit is contained in:
deadvey
2026-02-09 21:59:35 +00:00
parent e4fc63134f
commit 26ee45eb88
4 changed files with 20 additions and 13 deletions

View File

@@ -6,11 +6,12 @@ os_start_cli:
mov si, prompt
call os_print_string
mov ax, 20
mov bx, 20
mov di, user_input
mov ax, user_input
call os_display_input
call keyboard_display_input
jmp os_read_cli
; ------------------------------------------------