about summary refs log tree commit diff stats
path: root/edit.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-11-01 02:32:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2014-11-01 02:32:39 -0700
commita8a1786bada82217c4289c236ea54c651b0eefce (patch)
tree684ab694f4283d7282eb92e130f4b3e9144749bb /edit.mu
parent4da62e4ac325e45ae0dbd09e38b9dfcfcd78c1ae (diff)
downloadmu-a8a1786bada82217c4289c236ea54c651b0eefce.tar.gz
202 - variable names for edit.mu
Diffstat (limited to 'edit.mu')
-rw-r--r--edit.mu23
1 files changed, 12 insertions, 11 deletions
diff --git a/edit.mu b/edit.mu
index be32f943..1a72f032 100644
--- a/edit.mu
+++ b/edit.mu
@@ -1,17 +1,18 @@
 ; a screen is an array of pointers to lines, in turn arrays of characters
 
 (new-screen
-  ((601 integer) <- arg)
-  ((602 integer) <- arg)
-  ((603 screen-address) <- new (screen literal) (601 integer))
-  ((604 integer) <- copy (0 literal))
+  ((default-scope scope-address) <- new (scope literal) (30 literal))
+  ((nrows integer) <- arg)
+  ((ncols integer) <- arg)
+  ((result screen-address) <- new (screen literal) (nrows integer))
+  ((rowidx integer) <- copy (0 literal))
   { begin
-    ((606 line-address-address) <- index-address (603 screen-address deref) (604 integer))
-    ((606 line-address-address deref) <- new (line literal) (602 integer))
-    ((605 line-address) <- copy (606 line-address-address deref))
-    ((604 integer) <- add (604 integer) (1 literal))
-    ((607 boolean) <- neq (604 integer) (601 integer))
-    (continue-if (607 boolean))
+    ((curr-line-address-address line-address-address) <- index-address (result screen-address deref) (rowidx integer))
+    ((curr-line-address-address line-address-address deref) <- new (line literal) (ncols integer))
+    ((curr-line-address line-address) <- copy (curr-line-address-address line-address-address deref))
+    ((rowidx integer) <- add (rowidx integer) (1 literal))
+    ((x boolean) <- neq (rowidx integer) (nrows integer))
+    (continue-if (x boolean))
   }
-  (reply (603 screen-address))
+  (reply (result screen-address))
 )