mu/tutorial/task1.mu

11 lines
317 B
Forth
Raw Normal View History

2021-10-24 14:05:35 +00:00
# Draw a single line of ASCII text.
#
# To build a disk image:
# ./translate tutorial/task1.mu # emits code.img
# To run:
# qemu-system-i386 code.img
fn main screen: (addr screen) {
2021-10-21 04:51:47 +00:00
var dummy/eax: int <- draw-text-rightward screen, "hello from baremetal Mu!", 0x10/x, 0x400/xmax, 0x10/y, 0xa/fg, 0/bg
}