diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-07-30 20:28:36 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-07-30 20:28:36 -0700 |
commit | 86d8f1f30dd70f9be457d9855327649a0870a22e (patch) | |
tree | a154b04314f94662327342953cb72aeda69d30da /subx/teensy/test6-global.s | |
parent | eb1d742baf657273aff2317aeb231f76e1c9e1a8 (diff) | |
download | mu-86d8f1f30dd70f9be457d9855327649a0870a22e.tar.gz |
4462
The teensy/ examples have outlived their usefulness, I think.
Diffstat (limited to 'subx/teensy/test6-global.s')
-rw-r--r-- | subx/teensy/test6-global.s | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/subx/teensy/test6-global.s b/subx/teensy/test6-global.s deleted file mode 100644 index a09eecae..00000000 --- a/subx/teensy/test6-global.s +++ /dev/null @@ -1,13 +0,0 @@ -; Example with a data segment. -; nasm -f elf test6-global.s -; gcc -Wall -s test6-global.o -o test6 -BITS 32 - -SECTION .data -foo: dd 42 - -SECTION .text -GLOBAL main -main: - mov eax, [foo] - ret |