about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-06 22:48:08 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-06 22:48:08 -0700
commit5f1de34a679ab0b9c59067f7924f1c953917b53e (patch)
tree38601da084ea98d42ec6c059b9eea801b076edf5
parentc1100182501e2dca7893b3c891470b33c43a71b1 (diff)
downloadmu-5f1de34a679ab0b9c59067f7924f1c953917b53e.tar.gz
4312 - fix one of the test binaries
-rwxr-xr-xsubx/teensy/test6bin5588 -> 5588 bytes
-rw-r--r--subx/teensy/test6-global.s2
2 files changed, 1 insertions, 1 deletions
diff --git a/subx/teensy/test6 b/subx/teensy/test6
index 0c08219f..2d2e146a 100755
--- a/subx/teensy/test6
+++ b/subx/teensy/test6
Binary files differdiff --git a/subx/teensy/test6-global.s b/subx/teensy/test6-global.s
index 9b981b62..a09eecae 100644
--- a/subx/teensy/test6-global.s
+++ b/subx/teensy/test6-global.s
@@ -9,5 +9,5 @@ foo: dd 42
 SECTION .text
 GLOBAL main
 main:
-  mov eax, foo
+  mov eax, [foo]
   ret