diff options
author | 2020-06-11 19:54:45 +0200 | |
---|---|---|
committer | 2020-06-11 19:54:45 +0200 | |
commit | cdb5ca42c689e4f58e27124c14a4b0fd5a9d05ea (patch) | |
tree | cbc83f5d722fde554ade457ba0dea021476e500f /scripts/src | |
parent | 8166769ff9996ce1be30b3e8fdd793e8aae002d6 (diff) |
Hyperscan updates: [Sandro Ronco]
- Added emulation of the SPG290 CDServo
- Added joypad inputs
- Added RFID card support
- Split SPG290 PPU, Timers and I2C into separate devices
- Added a softlist for the RFID cards
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/machine.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 621009924f9..266dec7fd49 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2909,6 +2909,26 @@ end --------------------------------------------------- -- +--@src/devices/machine/spg290_cdservo.h,MACHINES["SPG290"] = true +--@src/devices/machine/spg290_timer.h,MACHINES["SPG290"] = true +--@src/devices/machine/spg290_i2c.h,MACHINES["SPG290"] = true +--@src/devices/machine/spg290_ppu.h,MACHINES["SPG290"] = true +--------------------------------------------------- + +if (MACHINES["SPG290"]~=null) then + files { + MAME_DIR .. "src/devices/machine/spg290_cdservo.cpp", + MAME_DIR .. "src/devices/machine/spg290_cdservo.h", + MAME_DIR .. "src/devices/machine/spg290_timer.cpp", + MAME_DIR .. "src/devices/machine/spg290_timer.h", + MAME_DIR .. "src/devices/machine/spg290_i2c.cpp", + MAME_DIR .. "src/devices/machine/spg290_i2c.h", + MAME_DIR .. "src/devices/machine/spg290_ppu.cpp", + MAME_DIR .. "src/devices/machine/spg290_ppu.h", + } +end +--------------------------------------------------- +-- --@src/devices/machine/stvcd.h,MACHINES["STVCD"] = true --------------------------------------------------- |