diff options
| author | 2026-04-06 05:16:43 +1000 | |
|---|---|---|
| committer | 2026-04-06 05:16:43 +1000 | |
| commit | 7ff17615ba95d57befd8cf050b9a88bcb9aaf83c (patch) | |
| tree | 2fcdb28a05180d9c2cd2632caa403960852faef3 /scripts/src/cpu.lua | |
| parent | d2e952322e057e42ab059035157c7136e0565727 (diff) | |
Cleaned up unsupportable legacy stuff:
cpu/drcbex86.cpp: Removed i686 recompiler back-end. Without a practical
way to make Windows i686 builds, it's just going to rot. Also, x86-64
is now older than Pac-Man was when MAME was initially created. It's
dead on the desktop
tools: Removed aueffectutil - it's no longer useful.
emu/video/rgbutil.cpp: Removed Altivec/VMX bilinear filtering
implementation. PowerPC on desktop is dead.
file/posixptty.cpp, sdl, sdl3, scripts: Removed support for SysV
operating systems. They’re dead on the desktop.
scripts: Removed outdated Lua compatibility macros. They weren't doing
anything sice we updated to Lua 5.4 (the compatibility options changed,
but we just left the old macros in place, which no longer had any
effect).
Diffstat (limited to 'scripts/src/cpu.lua')
| -rw-r--r-- | scripts/src/cpu.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index f6922a00a9f..743d36f279a 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -13,7 +13,7 @@ -- Dynamic recompiler objects -------------------------------------------------- -DRC_CPUS = { "E1", "SH", "MIPS3", "POWERPC", "ADSP21062", "MB86235", "DSP16", "UNSP", "SWP30", "DSPP" } +DRC_CPUS = { "ADSP21062", "DSP16", "DSPP", "E1", "MB86235", "MIPS3", "POWERPC", "SH", "SWP30", "UNSP" } CPU_INCLUDE_DRC = false for i, v in ipairs(DRC_CPUS) do if (CPUS[v]~=null) then @@ -49,8 +49,6 @@ if CPU_INCLUDE_DRC_NATIVE then MAME_DIR .. "src/devices/cpu/drcbearm64.h", MAME_DIR .. "src/devices/cpu/drcbex64.cpp", MAME_DIR .. "src/devices/cpu/drcbex64.h", - MAME_DIR .. "src/devices/cpu/drcbex86.cpp", - MAME_DIR .. "src/devices/cpu/drcbex86.h", } end |
