view runtime.S @ 686:8cb61671777b

Fix indentation that presumably got messed up in a merge
author Michael Pavone <pavone@retrodev.com>
date Thu, 08 Jan 2015 09:36:54 -0800
parents 7ed1dbb48f61
children
line wrap: on
line source



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