diff trans.c @ 19:4717146a7606

Initial support for M68k reset vector, rather than starting at an arbitrary address
author Mike Pavone <pavone@retrodev.com>
date Tue, 04 Dec 2012 19:25:54 -0800
parents 3e7bfde7606e
children e657a99b5abf
line wrap: on
line diff
--- a/trans.c	Tue Dec 04 19:13:12 2012 -0800
+++ b/trans.c	Tue Dec 04 19:25:54 2012 -0800
@@ -34,6 +34,6 @@
 	//work RAM
 	context.mem_pointers[1] = malloc(64 * 1024);
 	translate_m68k_stream(transbuf, transbuf + size, 0, &context);
-	start_68k_context(&context, 0);
+	m68k_reset(&context);
 	return 0;
 }