sh: Move terminal control character consts to main.asm
This commit is contained in:
parent
36f76ed12d
commit
f37c9b37bd
|
@ -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:
|
||||||
|
|
|
@ -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:
|
||||||
|
|
|
@ -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]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user