From 55393083989cfdbcbf88ff95fed71b146ef91304 Mon Sep 17 00:00:00 2001 From: feos Date: Tue, 26 May 2020 00:04:43 +0300 Subject: [PATCH] mame: fix configs being dumped to disk hopefully, also fix the thing mame lua figuring out cpu and address space every time I read a byte was a dumb idea it seems. accessing maincpu program space directly via C API is much wiser. ram search does the thing now. --- src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs | 3 +++ src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs b/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs index f56bcd6c3f..1cbe3198a7 100644 --- a/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs +++ b/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs @@ -22,6 +22,9 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME [DllImport(dll, CallingConvention = cc)] public static extern uint mame_launch(int argc, string[] argv); + [DllImport(dll, CallingConvention = cc)] + public static extern char mame_read_byte(uint address); + [DllImport(dll, CallingConvention = cc)] public static extern SaveError mame_save_buffer(byte[] buf, out int length); diff --git a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs index 3dddf94319..c25f85ac74 100644 --- a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs +++ b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs @@ -218,7 +218,7 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME , "-nonvram_save" // prevent dumping non-volatile ram to disk , "-artpath", "mame\\artwork" // path to load artowrk from , "-diff_directory", "mame\\diff" // hdd diffs, whenever stuff is written back to an image - , "-cfg_directory", "" // send invalid path to prevent cfg handling + , "-cfg_directory", ":" // send invalid path to prevent cfg handling , "-volume", "-32" // lowest attenuation means mame osd remains silent , "-output", "console" // print everything to hawk console , "-samplerate", _sampleRate.ToString() // match hawk samplerate @@ -452,7 +452,7 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME addr += firstOffset; - var val = (byte)LibMAME.mame_lua_get_int($"{ MAMELuaCommand.GetSpace }:read_u8({ addr << _systemBusAddressShift })"); + var val = (byte)LibMAME.mame_read_byte((uint)addr << _systemBusAddressShift); _memoryAccessComplete.Set();