diff ztestrun.c @ 659:759c38bf97f8

Minor Z80 core cleanup
author Michael Pavone <pavone@retrodev.com>
date Thu, 01 Jan 2015 20:26:22 -0800
parents f838bc0aeb7c
children 16e5dfdb67b5
line wrap: on
line diff
--- a/ztestrun.c	Thu Jan 01 20:21:20 2015 -0800
+++ b/ztestrun.c	Thu Jan 01 20:26:22 2015 -0800
@@ -53,7 +53,7 @@
 	fseek(f, 0, SEEK_SET);
 	fread(z80_ram, 1, filesize < sizeof(z80_ram) ? filesize : sizeof(z80_ram), f);
 	fclose(f);
-	init_x86_z80_opts(&opts, z80_map, 2);
+	init_z80_opts(&opts, z80_map, 2);
 	init_z80_context(&context, &opts);
 	//Z80 RAM
 	context.mem_pointers[0] = z80_ram;