about summary refs log tree commit diff stats
path: root/transect/ex6.k2
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-07-27 16:01:55 -0700
committerKartik Agaram <vc@akkartik.com>2019-07-27 17:47:59 -0700
commit6e1eeeebfb453fa7c871869c19375ce60fbd7413 (patch)
tree539c4a3fdf1756ae79770d5c4aaf6366f1d1525e /transect/ex6.k2
parent8846a7f85cc04b77b2fe8a67b6d317723437b00c (diff)
downloadmu-6e1eeeebfb453fa7c871869c19375ce60fbd7413.tar.gz
5485 - promote SubX to top-level
Diffstat (limited to 'transect/ex6.k2')
-rw-r--r--transect/ex6.k223
1 files changed, 0 insertions, 23 deletions
diff --git a/transect/ex6.k2 b/transect/ex6.k2
deleted file mode 100644
index cd68f861..00000000
--- a/transect/ex6.k2
+++ /dev/null
@@ -1,23 +0,0 @@
-## print out a (global variable) string to stdout
-
-var size : int = 14
-var x : (array character) = "hello, world!"
-
-fn main [
-  call write 1/stdout, x, size
-  call exit, 0
-]
-
-fn write fd : int, x : (address array byte), size : int [
-  EBX <- copy fd
-  ECX <- copy x
-  EDX <- copy size
-  EAX <- copy 4/write
-  syscall
-]
-
-fn exit x : int [
-  code/EBX <- copy x
-  code/EAX <- copy 1/exit
-  syscall
-]