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/test3.s | |
parent | eb1d742baf657273aff2317aeb231f76e1c9e1a8 (diff) | |
download | mu-86d8f1f30dd70f9be457d9855327649a0870a22e.tar.gz |
4462
The teensy/ examples have outlived their usefulness, I think.
Diffstat (limited to 'subx/teensy/test3.s')
-rw-r--r-- | subx/teensy/test3.s | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/subx/teensy/test3.s b/subx/teensy/test3.s deleted file mode 100644 index b00c3cc0..00000000 --- a/subx/teensy/test3.s +++ /dev/null @@ -1,10 +0,0 @@ -; https://www.muppetlabs.com/~breadbox/software/tiny/teensy.html -; nasm -f elf test3.s -; gcc -Wall -s -nostartfiles test3.o -o test3 -BITS 32 -EXTERN _exit -GLOBAL _start -SECTION .text -_start: - push dword 42 - call _exit |