mirror of
https://github.com/irmen/prog8.git
synced 2024-11-01 00:10:48 +00:00
139 lines
2.9 KiB
Lua
139 lines
2.9 KiB
Lua
; Prog8 definitions for the Text I/O console routines for the Virtual Machine
|
|
|
|
%import conv
|
|
|
|
txt {
|
|
|
|
sub clear_screen() {
|
|
str @shared sequence = "\x1b[2J\x1B[H"
|
|
%asm {{
|
|
load.w r0,txt.clear_screen.sequence
|
|
syscall 3
|
|
}}
|
|
}
|
|
|
|
sub nl() {
|
|
txt.chrout('\n')
|
|
}
|
|
|
|
sub spc() {
|
|
txt.chrout(' ')
|
|
}
|
|
|
|
sub lowercase() {
|
|
; not supported
|
|
}
|
|
|
|
sub uppercase() {
|
|
; not supported
|
|
}
|
|
|
|
sub chrout(ubyte char) {
|
|
%asm {{
|
|
loadm.b r0,txt.chrout.char
|
|
syscall 2
|
|
}}
|
|
}
|
|
|
|
sub print (str text) {
|
|
%asm {{
|
|
loadm.w r0,txt.print.text
|
|
syscall 3
|
|
}}
|
|
}
|
|
|
|
sub print_ub0 (ubyte value) {
|
|
; ---- print the ubyte in A in decimal form, with left padding 0s (3 positions total)
|
|
conv.str_ub0(value)
|
|
print(conv.string_out)
|
|
}
|
|
|
|
sub print_ub (ubyte value) {
|
|
; ---- print the ubyte in decimal form, without left padding 0s
|
|
conv.str_ub(value)
|
|
print(conv.string_out)
|
|
}
|
|
|
|
sub print_b (byte value) {
|
|
; ---- print the byte in decimal form, without left padding 0s
|
|
conv.str_b(value)
|
|
print(conv.string_out)
|
|
}
|
|
|
|
sub print_ubhex (ubyte value, ubyte prefix) {
|
|
; ---- print the ubyte in hex form
|
|
if prefix
|
|
chrout('$')
|
|
conv.str_ubhex(value)
|
|
print(conv.string_out)
|
|
}
|
|
|
|
sub print_ubbin (ubyte value, ubyte prefix) {
|
|
; ---- print the ubyte in binary form
|
|
if prefix
|
|
chrout('%')
|
|
conv.str_ubbin(value)
|
|
print(conv.string_out)
|
|
}
|
|
|
|
sub print_uwbin (uword value, ubyte prefix) {
|
|
; ---- print the uword in binary form
|
|
if prefix
|
|
chrout('%')
|
|
conv.str_uwbin(value)
|
|
print(conv.string_out)
|
|
}
|
|
|
|
sub print_uwhex (uword value, ubyte prefix) {
|
|
; ---- print the uword in hexadecimal form (4 digits)
|
|
if prefix
|
|
chrout('$')
|
|
conv.str_uwhex(value)
|
|
print(conv.string_out)
|
|
}
|
|
|
|
sub print_uw0 (uword value) {
|
|
; ---- print the uword value in decimal form, with left padding 0s (5 positions total)
|
|
conv.str_uw0(value)
|
|
print(conv.string_out)
|
|
}
|
|
|
|
sub print_uw (uword value) {
|
|
; ---- print the uword in decimal form, without left padding 0s
|
|
conv.str_uw(value)
|
|
print(conv.string_out)
|
|
}
|
|
|
|
sub print_w (word value) {
|
|
; ---- print the (signed) word in decimal form, without left padding 0's
|
|
conv.str_w(value)
|
|
print(conv.string_out)
|
|
}
|
|
|
|
sub input_chars (uword buffer) -> ubyte {
|
|
; ---- Input a string (max. 80 chars) from the keyboard. Returns length of input. (string is terminated with a 0 byte as well)
|
|
; It assumes the keyboard is selected as I/O channel!
|
|
%asm {{
|
|
loadm.w r0,txt.input_chars.buffer
|
|
syscall 6
|
|
return
|
|
}}
|
|
}
|
|
|
|
sub plot (ubyte col, ubyte row) {
|
|
; use ANSI escape sequence to position the cursor
|
|
txt.chrout(27)
|
|
txt.chrout('[')
|
|
txt.print_ub(row)
|
|
txt.chrout(';')
|
|
txt.print_ub(col)
|
|
txt.chrout('H')
|
|
}
|
|
|
|
sub setchr (ubyte col, ubyte row, ubyte char) {
|
|
plot(col, row)
|
|
txt.chrout(char)
|
|
}
|
|
|
|
}
|