about summary refs log tree commit diff stats
path: root/apps/ex1.mu
blob: 3755ccc732087da7bb29f245f11e8c80a51a9b97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# The simplest possible bare-metal program.
#
# To build a disk image:
#   ./translate apps/ex1.mu        # emits code.img
# To run:
#   qemu-system-i386 code.img
#
# Expected output: blank screen with no errors

fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
  loop
}