summaryrefslogtreecommitdiff
path: root/runtime.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.S
parent057e8fb32092e1c1c642791cf915c2522b5662e0 (diff)
Eliminate runtime.S/runtime_32.S.
Diffstat (limited to 'runtime.S')
-rw-r--r--runtime.S16
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
-
-
-