view runtime_32.S @ 723:7178d750efbd

Process events while waiting for 68K debugger input. This prevents "not responsive" dialogs when sitting in the debugger
author Michael Pavone <pavone@retrodev.com>
date Thu, 21 May 2015 18:37:41 -0700
parents 5a6ff0d76032
children
line wrap: on
line source



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