mu/apps/ex3.mu

30 lines
763 B
Forth
Raw Normal View History

# Draw pixels in response to keyboard events, starting from the top-left
# and in raster order.
#
# To build a disk image:
2021-07-16 15:09:42 +00:00
# ./translate apps/ex3.mu # emits code.img
# To run:
2021-04-17 03:26:42 +00:00
# qemu-system-i386 code.img
#
# Expected output: a new green pixel starting from the top left corner of the
# screen every time you press a key (letter or digit)
2021-03-28 00:47:23 +00:00
fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
var x/ecx: int <- copy 0
var y/edx: int <- copy 0
{
var key/eax: byte <- read-key keyboard
compare key, 0
loop-if-= # busy wait
pixel-on-real-screen x, y, 0x31/green
x <- increment
compare x, 0x400/screen-width=1024
{
break-if-<
y <- increment
x <- copy 0
}
loop
}
}