summaryrefslogtreecommitdiff
path: root/ztestrun.c
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2015-01-01 20:26:22 -0800
committerMichael Pavone <pavone@retrodev.com>2015-01-01 20:26:22 -0800
commitd41ae43228509a1a67446492b844013cf1e68c36 (patch)
treed944a6076ee2030915a57c28fbd2f3cce060e0d5 /ztestrun.c
parent983a2089cf49d0f6995fb30ca2327d239f21ebb4 (diff)
Minor Z80 core cleanup
Diffstat (limited to 'ztestrun.c')
-rw-r--r--ztestrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ztestrun.c b/ztestrun.c
index 1c7c6d8..ef042b5 100644
--- a/ztestrun.c
+++ b/ztestrun.c
@@ -53,7 +53,7 @@ int main(int argc, char ** argv)
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;