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_32.S | |
parent | 057e8fb32092e1c1c642791cf915c2522b5662e0 (diff) |
Eliminate runtime.S/runtime_32.S.
Diffstat (limited to 'runtime_32.S')
-rw-r--r-- | runtime_32.S | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/runtime_32.S b/runtime_32.S deleted file mode 100644 index 50117f1..0000000 --- a/runtime_32.S +++ /dev/null @@ -1,17 +0,0 @@ - - -invalid_msg: - .asciz "Invalid instruction at %X\n" - - .global m68k_invalid -m68k_invalid: - push %ecx - push invalid_msg - xor %eax, %eax - call printf - push $1 - call exit - - - - |