about summary refs log tree commit diff stats
path: root/prototypes/browse/1-print-file.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-05-31 23:43:49 -0700
committerKartik Agaram <vc@akkartik.com>2020-05-31 23:43:49 -0700
commit9cc69d69c6cd83ed4aa367b4a08ca379cae45805 (patch)
treeb469fd1bf0b3e46258cd835f82da72ee3d26e310 /prototypes/browse/1-print-file.mu
parent2f16a74783d830caf2cc01bd67996317195c94c9 (diff)
downloadmu-9cc69d69c6cd83ed4aa367b4a08ca379cae45805.tar.gz
6456 - new directory for live-blogging prototypes
I don't have layers yet in Mu. But I can still create lots of versions
of a program.
Diffstat (limited to 'prototypes/browse/1-print-file.mu')
-rw-r--r--prototypes/browse/1-print-file.mu32
1 files changed, 32 insertions, 0 deletions
diff --git a/prototypes/browse/1-print-file.mu b/prototypes/browse/1-print-file.mu
new file mode 100644
index 00000000..ea441572
--- /dev/null
+++ b/prototypes/browse/1-print-file.mu
@@ -0,0 +1,32 @@
+fn main args: (addr array (addr array byte)) -> exit-status/ebx: int {
+  var filename/eax: (addr array byte) <- first-arg args
+  var file/ecx: (addr buffered-file) <- load-file filename
+  dump file
+  exit-status <- copy 0
+}
+
+fn first-arg args-on-stack: (addr array (addr array byte)) -> out/eax: (addr array byte) {
+  var args/eax: (addr array (addr array byte)) <- copy args-on-stack
+  var result/eax: (addr addr array byte) <- index args, 1
+  out <- copy *result
+}
+
+fn load-file filename: (addr array byte) -> out/ecx: (addr buffered-file) {
+  var result: (handle buffered-file)
+  {
+    var tmp1/eax: (addr handle buffered-file) <- address result
+    open filename, 0, tmp1
+  }
+  var tmp2/eax: (addr buffered-file) <- lookup result
+  out <- copy tmp2
+}
+
+fn dump in: (addr buffered-file) {
+  {
+    var c/eax: byte <- read-byte-buffered in
+    compare c, 0xffffffff  # EOF marker
+    break-if-=
+    print-byte c
+    loop
+  }
+}