diff options
author | 2023-02-15 22:08:09 -0500 | |
---|---|---|
committer | 2023-02-15 22:08:09 -0500 | |
commit | 302c0ae5b256c23b5b42aa19843e0526af199818 (patch) | |
tree | 76af24d58821fbf019abcfd57d807142f2a7f7e9 /scripts/src/machine.lua | |
parent | 49ae10a8cd2c87af6fb7c5f854c7891b8762fa11 (diff) |
imacg3.cpp, powermacg3.cpp: added Cuda, MacADB, and DIMM serial presence detect readback. [R. Belmont]
mpc106.cpp: fixed endianness of register access, hooked up RAM, made compatible with RAM device. [R. Belmont]
cuda.cpp: Added I2C I/O hookups. [R. Belmont]
heathrow.cpp: Hack for unknown register that imac was stuck on. [R. Belmont]
dimm_spd.cpp: New device that provides a configurable DIMM serial presence detect readback for I2C or SMBus. [R. Belmont]
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index c7a038195ec..1578aae4857 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1147,6 +1147,18 @@ if (MACHINES["CXD1095"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/machine/dimm_spd.h,MACHINES["DIMM_SPD"] = true +--------------------------------------------------- + +if (MACHINES["DIMM_SPD"]~=null) then + files { + MAME_DIR .. "src/devices/machine/dimm_spd.cpp", + MAME_DIR .. "src/devices/machine/dimm_spd.h", + } +end + --@src/devices/machine/dl11.h,MACHINES["DL11"] = true --------------------------------------------------- |