diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-07-06 22:48:08 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-07-06 22:48:08 -0700 |
commit | 5f1de34a679ab0b9c59067f7924f1c953917b53e (patch) | |
tree | 38601da084ea98d42ec6c059b9eea801b076edf5 | |
parent | c1100182501e2dca7893b3c891470b33c43a71b1 (diff) | |
download | mu-5f1de34a679ab0b9c59067f7924f1c953917b53e.tar.gz |
4312 - fix one of the test binaries
-rwxr-xr-x | subx/teensy/test6 | bin | 5588 -> 5588 bytes | |||
-rw-r--r-- | subx/teensy/test6-global.s | 2 |
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 |