summaryrefslogtreecommitdiff
path: root/runtime.S
diff options
context:
space:
mode:
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
-
-
-