diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-10-09 21:08:40 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-10-09 21:08:40 -0700 |
commit | 0c465d1dcca6dceb9ca431feba4a193473565047 (patch) | |
tree | 8434fda439b9fce87f75439ff9dae734bad14e13 /apps | |
parent | 5659eccded05b72af8758dbdde63f7f68da0cb07 (diff) | |
download | mu-0c465d1dcca6dceb9ca431feba4a193473565047.tar.gz |
6975
Diffstat (limited to 'apps')
-rw-r--r-- | apps/tile/environment.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tile/environment.mu b/apps/tile/environment.mu index 910b7626..a2302d6a 100644 --- a/apps/tile/environment.mu +++ b/apps/tile/environment.mu @@ -276,7 +276,7 @@ fn render-sandbox screen: (addr screen), functions: (addr handle function), bind var line/ecx: (addr line) <- copy _line # cursor-word var cursor-word-storage: (handle word) - var cursor-word-ah/ebx: (addr handle word) <- address cursor-word-storage + var cursor-word-ah/eax: (addr handle word) <- address cursor-word-storage get-cursor-word sandbox, functions, cursor-word-ah var _cursor-word/eax: (addr word) <- lookup *cursor-word-ah var cursor-word/ebx: (addr word) <- copy _cursor-word |