mu/ex7.mu

47 lines
1.1 KiB
Forth
Raw Normal View History

2021-01-14 00:57:04 +00:00
# Cursor-based motions.
#
# To build a disk image:
# ./translate_mu_baremetal baremetal/ex7.mu # emits disk.img
# To run:
# qemu-system-i386 disk.img
# Or:
# bochs -f baremetal/boot.bochsrc # boot.bochsrc loads disk.img
#
# Expected output: an interactive game a bit like "snakes". Try pressing h, j,
# k, l.
fn main {
2021-01-23 06:16:59 +00:00
var space/eax: grapheme <- copy 0x20
set-cursor-position 0/screen, 0, 0
2021-01-14 00:57:04 +00:00
{
show-cursor 0/screen, space
var key/eax: byte <- read-key 0/keyboard
2021-01-23 06:16:59 +00:00
{
compare key, 0x68/h
2021-01-23 06:16:59 +00:00
break-if-!=
2021-02-11 06:34:08 +00:00
draw-code-point-at-cursor 0/screen, 0x2d/dash, 0x31/fg, 0/bg
2021-02-10 04:53:47 +00:00
move-cursor-left 0
2021-01-23 06:16:59 +00:00
}
{
compare key, 0x6a/j
2021-01-23 06:16:59 +00:00
break-if-!=
2021-02-11 06:34:08 +00:00
draw-code-point-at-cursor 0/screen, 0x7c/vertical-bar, 0x31/fg, 0/bg
2021-02-10 04:53:47 +00:00
move-cursor-down 0
2021-01-23 06:16:59 +00:00
}
{
compare key, 0x6b/k
2021-01-23 06:16:59 +00:00
break-if-!=
2021-02-11 06:34:08 +00:00
draw-code-point-at-cursor 0/screen, 0x7c/vertical-bar, 0x31/fg, 0/bg
2021-02-10 04:53:47 +00:00
move-cursor-up 0
2021-01-23 06:16:59 +00:00
}
{
compare key, 0x6c/l
2021-01-23 06:16:59 +00:00
break-if-!=
2021-02-11 06:34:08 +00:00
var g/eax: code-point <- copy 0x2d/dash
draw-code-point-at-cursor 0/screen, 0x2d/dash, 0x31/fg, 0/bg
2021-02-10 04:53:47 +00:00
move-cursor-right 0
2021-01-23 06:16:59 +00:00
}
loop
2021-01-14 00:57:04 +00:00
}
}