summaryrefslogtreecommitdiff
path: root/runtime_32.S
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2015-05-23 20:24:27 -0700
committerMichael Pavone <pavone@retrodev.com>2015-05-23 20:24:27 -0700
commita68ca32cfe9156b40952894ff09f1991f073486e (patch)
treedfba1c7a2d4474533f2449d3a41aeeabd09ba8bc /runtime_32.S
parent057e8fb32092e1c1c642791cf915c2522b5662e0 (diff)
Eliminate runtime.S/runtime_32.S.
Diffstat (limited to 'runtime_32.S')
-rw-r--r--runtime_32.S17
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
-
-
-
-