diff options
author | 2023-05-21 22:17:46 +0200 | |
---|---|---|
committer | 2023-05-21 22:17:46 +0200 | |
commit | a7425f83dffe38e64253a606abf334f1a8a3e860 (patch) | |
tree | 10b80d67d78a7b2f926cac7303c8d384cef2d2f8 /scripts/src/machine.lua | |
parent | 9d39fbd6aa3c5f64a69e8b3d71f396792f7daa12 (diff) |
Initial work towards i440bx chipset (#11037)
- implement stubs for i82443bx_host and i82371eb PCI devices, hooks up base PCI stubs to midway/midqslvr.cpp, misc/comebaby.cpp and misc/xtom3d.cpp
- misc/xtom3d.cpp: preliminary implementation of Oksan ROM DISK ISA card
- machine/pci-smbus.h: make map public so it can be reused by i82371eb_acpi (would otherwise fail mapping to the intended HW)
New systems marked not working
----------------------------------
Pump It Up: The 1st Dance Floor [ATR4X, Gergc, Pawprint, infamouspat, Ruubbinnexx, H4M573R, Angelo Salese, Hammy]
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 28173df5241..1d63d08dca7 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2793,8 +2793,18 @@ if (MACHINES["PCI"]~=null) then MAME_DIR .. "src/devices/machine/i82439hx.h", MAME_DIR .. "src/devices/machine/i82439tx.cpp", MAME_DIR .. "src/devices/machine/i82439tx.h", + MAME_DIR .. "src/devices/machine/i82443bx_host.cpp", + MAME_DIR .. "src/devices/machine/i82443bx_host.h", MAME_DIR .. "src/devices/machine/i82371sb.cpp", MAME_DIR .. "src/devices/machine/i82371sb.h", + MAME_DIR .. "src/devices/machine/i82371eb_isa.cpp", + MAME_DIR .. "src/devices/machine/i82371eb_isa.h", + MAME_DIR .. "src/devices/machine/i82371eb_ide.cpp", + MAME_DIR .. "src/devices/machine/i82371eb_ide.h", + MAME_DIR .. "src/devices/machine/i82371eb_acpi.cpp", + MAME_DIR .. "src/devices/machine/i82371eb_acpi.h", + MAME_DIR .. "src/devices/machine/i82371eb_usb.cpp", + MAME_DIR .. "src/devices/machine/i82371eb_usb.h", MAME_DIR .. "src/devices/machine/lpc.h", MAME_DIR .. "src/devices/machine/lpc-acpi.cpp", MAME_DIR .. "src/devices/machine/lpc-acpi.h", |