mu/shell/main.mu

43 lines
1.2 KiB
Forth
Raw Normal View History

# Experimental Mu shell
# A Lisp with indent-sensitivity and infix, no macros. Commas are ignored.
2021-03-28 15:34:44 +00:00
fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
var sandbox-storage: sandbox
var sandbox/esi: (addr sandbox) <- address sandbox-storage
initialize-sandbox sandbox
2021-03-28 15:34:44 +00:00
load-sandbox data-disk, sandbox
2021-02-23 07:59:35 +00:00
var width/eax: int <- copy 0
var height/ecx: int <- copy 0
width, height <- screen-size screen
{
render-sandbox screen, sandbox, 2/x, 2/y, width, height
{
var key/eax: byte <- read-key keyboard
compare key, 0
loop-if-=
# no way to quit right now; just reboot
2021-02-22 05:27:42 +00:00
edit-sandbox sandbox, key
}
loop
}
}
2021-03-28 15:34:44 +00:00
# Read a null-terminated sequence of keys from disk and load them into
# sandbox.
fn load-sandbox data-disk: (addr disk), _self: (addr sandbox) {
var self/esi: (addr sandbox) <- copy _self
var s-storage: (stream byte 0x200)
var s/ebx: (addr stream byte) <- address s-storage
2021-03-28 15:34:44 +00:00
load-sector data-disk, 0/lba, s
{
var done?/eax: boolean <- stream-empty? s
compare done?, 0/false
break-if-!=
var key/eax: byte <- read-byte s
compare key, 0/null
break-if-=
edit-sandbox self, key
loop
}
}