diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-09-27 07:32:08 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-09-27 07:32:08 -0700 |
commit | 7258083c6fe720b49c0a2b7e00af662dcb8a2d49 (patch) | |
tree | 858836e02333fc9d1b9a409c59bb663603836b75 /apps | |
parent | 866cccca763d9cbd161136d4a03723068d01f788 (diff) | |
download | mu-7258083c6fe720b49c0a2b7e00af662dcb8a2d49.tar.gz |
6884
Diffstat (limited to 'apps')
-rw-r--r-- | apps/tile/data.mu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tile/data.mu b/apps/tile/data.mu index 855a9779..d66e0495 100644 --- a/apps/tile/data.mu +++ b/apps/tile/data.mu @@ -113,11 +113,11 @@ fn create-primitive-defs _self: (addr handle function) { var curr-word-ah/ecx: (addr handle word) <- get body, data allocate curr-word-ah var curr-word/eax: (addr word) <- lookup *curr-word-ah - initialize-word-with curr-word, "x" + initialize-word-with curr-word, "2" curr-word-ah <- get curr-word, next allocate curr-word-ah curr-word <- lookup *curr-word-ah - initialize-word-with curr-word, "2" + initialize-word-with curr-word, "x" curr-word-ah <- get curr-word, next allocate curr-word-ah curr-word <- lookup *curr-word-ah |