about summary refs log tree commit diff stats
path: root/shell/global.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-06-04 21:56:43 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-06-04 21:56:43 -0700
commit73bbe731c57dfeec5dbd70e9279fa1ee028d2cd8 (patch)
tree2a251015e12cf045a9daeb701339886f11ec02dc /shell/global.mu
parent7531bc2124b837d5e2ad0185adeb6bf38e39edc4 (diff)
downloadmu-73bbe731c57dfeec5dbd70e9279fa1ee028d2cd8.tar.gz
select function to render first
Diffstat (limited to 'shell/global.mu')
-rw-r--r--shell/global.mu10
1 files changed, 10 insertions, 0 deletions
diff --git a/shell/global.mu b/shell/global.mu
index 6f6f1cb5..de9a27cc 100644
--- a/shell/global.mu
+++ b/shell/global.mu
@@ -502,3 +502,13 @@ fn move-gap-buffer-to-global _globals: (addr global-table), _definition-ah: (add
   var dest-ah/eax: (addr handle gap-buffer) <- get dest-global, input
   copy-object gap, dest-ah
 }
+
+fn set-global-cursor-index _globals: (addr global-table), name-gap: (addr gap-buffer) {
+  var globals/esi: (addr global-table) <- copy _globals
+  var name-storage: (stream byte 0x40)
+  var name/ecx: (addr stream byte) <- address name-storage
+  emit-gap-buffer name-gap, name
+  var index/ecx: int <- find-symbol-in-globals globals, name
+  var dest/edi: (addr int) <- get globals, cursor-index
+  copy-to *dest, index
+}