sh: Move terminal control character consts to main.asm

This commit is contained in:
Ry 2023-02-04 16:29:47 -08:00
parent 36f76ed12d
commit f37c9b37bd
3 changed files with 4 additions and 6 deletions

View File

@ -1,8 +1,5 @@
; clear command ; clear command
const FILL_TERM: 0xF0
const MOVE_CURSOR: 0xF1
shell_clear_command_string: data.strz "clear" shell_clear_command_string: data.strz "clear"
shell_clear_command: shell_clear_command:

View File

@ -1,7 +1,5 @@
; help command ; help command
const SET_COLOR: 0xF2
shell_help_command_string: data.strz "help" shell_help_command_string: data.strz "help"
shell_help_command: shell_help_command:

View File

@ -1,6 +1,9 @@
; fox32os shell ; fox32os shell
const CURSOR: 0x8A const CURSOR: 0x8A
const FILL_TERM: 0xF0
const MOVE_CURSOR: 0xF1
const SET_COLOR: 0xF2
const REDRAW_LINE: 0xFE const REDRAW_LINE: 0xFE
pop [shell_terminal_stream_struct_ptr] pop [shell_terminal_stream_struct_ptr]