diff options
| author | 2026-03-06 02:59:05 +1100 | |
|---|---|---|
| committer | 2026-03-06 02:59:05 +1100 | |
| commit | fee23037375166275937e15caf0b45f5de1cb3c7 (patch) | |
| tree | 9253e31804ecd5833999e7411ca38d9a3daa65be /scripts | |
| parent | e2dbc608c38558ee078d675c08fc91e9726beee0 (diff) | |
More stuff mostly related to recompiling CPUs:
cpu/drcbearm64.cpp: Don't set the rounding mode on SETFMOD if it hasn't
changed.
cpu/e132xs.cpp: Skip more unnecessary flag calculations, use
pre-calculated PC for updating G0 in memory when possible, better
analysis of pre-calculated PC values when delay slots are involved.
cpu/sh: Cleaned up register dependency analysis logging, fixed an
instruction analysis bug.
cpu/sharc: Disassemble unimplemented instructions executed in recompiled
code, include tag in more fatal errors, use throw syntax to make it
cleared it's an early out.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/cpu.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index 3490ca9d4f9..570d2bd1b87 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -283,8 +283,8 @@ if CPUS["ADSP2106X"] then end if opt_tool(CPUS, "ADSP2106X") then - table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/sharc/sharcdsm.cpp") - table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/sharc/sharcdsm.h") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/sharc/sharc_dasm.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/sharc/sharc_dasm.h") end -------------------------------------------------- |
