about summary refs log tree commit diff stats
path: root/ex8.mu
blob: 7e1f1b9c31324b76e483b805aa25410d8a2e1e45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Demo of floating-point support.
#
# To build a disk image:
#   ./translate ex8.mu             # emits disk.img
# To run:
#   bochs -f bochsrc               # bochsrc loads disk.img
# Set a breakpoint at 0x7c00 and start stepping.

fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
  var n/eax: int <- copy 0
  var result/xmm0: float <- convert n
}