about summary refs log tree commit diff stats
path: root/baremetal/400.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-02-11 00:44:13 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-02-11 00:44:13 -0800
commite396b3a0a354c017c7582124d51a0380a6e5c7de (patch)
tree7babc5b7340385957cd7f86a826b2307c978ac94 /baremetal/400.mu
parent79e6d41bea6d57afdb78e4be2fc3cda0a89f57b2 (diff)
downloadmu-e396b3a0a354c017c7582124d51a0380a6e5c7de.tar.gz
7719 - baremetal: print floats
Diffstat (limited to 'baremetal/400.mu')
-rw-r--r--baremetal/400.mu2
1 files changed, 2 insertions, 0 deletions
diff --git a/baremetal/400.mu b/baremetal/400.mu
index 4cbac1d3..d2b84ad1 100644
--- a/baremetal/400.mu
+++ b/baremetal/400.mu
@@ -57,3 +57,5 @@ sig to-decimal-digit in: grapheme -> _/eax: int
 sig next-word line: (addr stream byte), out: (addr slice)  # skips '#' comments
 sig next-raw-word line: (addr stream byte), out: (addr slice)  # does not skip '#' comments
 sig stream-empty? s: (addr stream _) -> _/eax: boolean
+
+sig integer-divide a: int, b: int -> _/eax: int, _/edx: int