diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-05-23 20:24:27 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-05-23 20:24:27 -0700 |
commit | a68ca32cfe9156b40952894ff09f1991f073486e (patch) | |
tree | dfba1c7a2d4474533f2449d3a41aeeabd09ba8bc /runtime.S | |
parent | 057e8fb32092e1c1c642791cf915c2522b5662e0 (diff) |
Eliminate runtime.S/runtime_32.S.
Diffstat (limited to 'runtime.S')
-rw-r--r-- | runtime.S | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/runtime.S b/runtime.S deleted file mode 100644 index 5595eb1..0000000 --- a/runtime.S +++ /dev/null @@ -1,16 +0,0 @@ - - -invalid_msg: - .asciz "Invalid instruction at %X\n" - - .global m68k_invalid -m68k_invalid: - lea invalid_msg(%rip), %rdi - mov %ecx, %esi - xor %rax, %rax - call printf - mov $1, %rdi - call exit - - - |