From 48d6afdd1c9aaafc5b8ce59c584e360d89571a5b Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Sun, 2 Mar 2014 16:34:29 -0800 Subject: Initial stab at separating the generic parts of the 68K core from the host-cpu specific parts. --- trans.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'trans.c') diff --git a/trans.c b/trans.c index e897d37..d73ebc5 100644 --- a/trans.c +++ b/trans.c @@ -49,7 +49,7 @@ int main(int argc, char ** argv) memmap[1].mask = 0xFFFF; memmap[1].flags = MMAP_READ | MMAP_WRITE | MMAP_CODE; memmap[1].buffer = malloc(64 * 1024); - init_x86_68k_opts(&opts, memmap, 2); + init_m68k_opts(&opts, memmap, 2); init_68k_context(&context, opts.gen.native_code_map, &opts); context.mem_pointers[0] = memmap[0].buffer; context.mem_pointers[1] = memmap[1].buffer; -- cgit v1.2.3