From f857959847f861ce9d0aa3c7189153e9309afafb Mon Sep 17 00:00:00 2001 From: Nick Downing Date: Thu, 4 Dec 2025 14:34:09 +1100 Subject: [PATCH] Switch /z80 submodule to multi_emu branch which removes some inlining and other optimizations that I think were made for the benefit of the arcade_disasm repo --- emu_z80.c | 2 +- z80 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/emu_z80.c b/emu_z80.c index 838bd24..bb8ae1c 100644 --- a/emu_z80.c +++ b/emu_z80.c @@ -501,7 +501,7 @@ int main(int argc, char **argv) { else if (cpu.pc >= BIOS_BOOT) cpu.a = bios(cpu.pc, cpu.a, cpu.c); - z80_step(&cpu, 1); + z80_step(&cpu); } #else struct cpu_z80 cpu; diff --git a/z80 b/z80 index 8856758..e2d690b 160000 --- a/z80 +++ b/z80 @@ -1 +1 @@ -Subproject commit 885675863cfdabc990dbf062febd2668ca66ebac +Subproject commit e2d690b3e49ba1748d4f66892f550b76ca5e8c12 -- 2.34.1