diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-07-19 19:46:04 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-07-19 19:46:04 -0700 |
commit | c0db806820515b3193a3174be08296c059db474d (patch) | |
tree | 89ea8d5e9f36e41a145517049a20f8522b31b2b6 | |
parent | a4c28e1bfbf5e0614d3a2cb4c3ea563ed0559df2 (diff) | |
download | mu-c0db806820515b3193a3174be08296c059db474d.tar.gz |
.
-rw-r--r-- | mu-init.subx | 1 | ||||
-rw-r--r-- | shell/global.mu | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/mu-init.subx b/mu-init.subx index a7c79851..8fcf84e3 100644 --- a/mu-init.subx +++ b/mu-init.subx @@ -14,7 +14,6 @@ Entry: bd/copy-to-ebp 0/imm32 # #? (main 0 0 Primary-bus-secondary-drive) -#? (test-definition-in-environment) # always first run tests (run-tests) (num-test-failures) # => eax diff --git a/shell/global.mu b/shell/global.mu index 636e2318..5c878f43 100644 --- a/shell/global.mu +++ b/shell/global.mu @@ -158,7 +158,7 @@ fn render-globals screen: (addr screen), _self: (addr global-table), show-cursor var global-id-a/eax: (addr int) <- index render-list, curr-index var global-id/eax: int <- copy *global-id-a compare global-id, 0 - break-if-= $render-globals:loop + break-if-= var global-offset/edx: (offset global) <- compute-offset data, global-id var curr/edx: (addr global) <- index data, global-offset var curr-input-ah/eax: (addr handle gap-buffer) <- get curr, input |