mu/apps/ex2.mu

27 lines
609 B
Forth
Raw Normal View History

# Test out the video mode by filling in the screen with pixels.
#
# To build a disk image:
2021-07-16 15:09:42 +00:00
# ./translate apps/ex2.mu # emits code.img
# To run:
2021-04-17 03:26:42 +00:00
# qemu-system-i386 code.img
2021-03-28 00:47:23 +00:00
fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
var y/eax: int <- copy 0
{
compare y, 0x300/screen-height=768
break-if->=
var x/edx: int <- copy 0
{
compare x, 0x400/screen-width=1024
break-if->=
2020-12-30 05:19:41 +00:00
var color/ecx: int <- copy x
color <- and 0xff
2021-05-23 15:06:03 +00:00
pixel screen x, y, color
x <- increment
loop
}
y <- increment
loop
}
}