diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-11-07 18:02:03 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-11-07 18:02:03 -0800 |
commit | d7ad7f9753442129c60174e2275312a1477cc15e (patch) | |
tree | f686ad6bd6d3e83e512e5ebe34549de208a5ddfb | |
parent | 5e3927f7e1233e8dd75f19a7cab056ca91ca22c6 (diff) | |
download | mu-d7ad7f9753442129c60174e2275312a1477cc15e.tar.gz |
7207 - tile: bugfix
-rw-r--r-- | apps/tile/value-stack.mu | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/tile/value-stack.mu b/apps/tile/value-stack.mu index b3269506..a3d05322 100644 --- a/apps/tile/value-stack.mu +++ b/apps/tile/value-stack.mu @@ -32,6 +32,8 @@ fn push-int-to-value-stack _self: (addr value-stack), _val: int { #? print-int32-hex-to-real-screen val copy-to *dest-addr2, val increment *top-addr + dest-addr2 <- get dest-addr, type + copy-to *dest-addr2, 0 # int } fn push-string-to-value-stack _self: (addr value-stack), val: (handle array byte) { |