BASIC interpreter

This commit is contained in:
deadvey
2026-02-09 20:41:49 +00:00
parent 0f6f8f33f6
commit e4fc63134f
16 changed files with 4501 additions and 4524 deletions

View File

@@ -40,6 +40,7 @@ command_result_text: db 'You typed: ', 0
unknown_command: db 'Error: Unkown Command..\n ', 0
stringified_int: db 0,0,0,0,0,0 ; Can store up to 6 digits
int_tmp: dw 0
; Disk operations
disk_read_fail: db 'Error: Could not read disk\n', 0
file_not_found: db 'File not found\n', 0
@@ -59,3 +60,4 @@ read_write_flag: db 02
empty_byte: db 0
empty_word: dw 0
empty_dword: dd 0
tmp: db '97', 0