diff options
| author | 2018-01-27 15:17:37 +0000 | |
|---|---|---|
| committer | 2018-01-27 10:17:37 -0500 | |
| commit | ff61c2c50d4873a2fe0bea9a27a41e0be3d983e5 (patch) | |
| tree | a2aca740abb6ba8637a0a53ca258271e40c20963 /scripts | |
| parent | 9560cc97d903ce5abad7030ff48f55319b029e18 (diff) | |
framework for adding 'gamebooster' (need to figure out how it actually works / maps tho) (#3134)
* fix/tidy tvboy driver (nw)
* missed file (nw)
* framework for adding 'gamebooster' (need to figure out how it actually works / maps tho) (nw)
(code based on zx spectrum expansion port code)
* (nw)
* lost a line (nw)
* allow it to run (nw)
* continued work (nw)
* mame64 psj -parallel gamebooster -cart tetris now works
* rm outdated (nw)
* remove unneeded code (nw)
* limit accesses, log unexpected ones, might have custom banking (nw)
* write bytes in an order that keeps the gb code happier , sml boots (nw)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/bus.lua | 14 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 804db83c2d1..24e8efb6c06 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -3094,6 +3094,20 @@ end --------------------------------------------------- -- +--@src/devices/bus/psx/parallel.h,BUSES["PSX_PARALLEL"] = true +--------------------------------------------------- + +if (BUSES["PSX_PARALLEL"]~=null) then + files { + MAME_DIR .. "src/devices/bus/psx/parallel.cpp", + MAME_DIR .. "src/devices/bus/psx/parallel.h", + MAME_DIR .. "src/devices/bus/psx/gamebooster.cpp", + MAME_DIR .. "src/devices/bus/psx/gamebooster.h", + } +end + +--------------------------------------------------- +-- --@src/devices/bus/nasbus/nasbus.h,BUSES["NASBUS"] = true --------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 8dd090657ae..1ea75121ebe 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -721,6 +721,7 @@ BUSES["PLUS4"] = true BUSES["POFO"] = true BUSES["PSI_KEYBOARD"] = true BUSES["PSX_CONTROLLER"] = true +BUSES["PSX_PARALLEL"] = true BUSES["QL"] = true BUSES["RS232"] = true BUSES["S100"] = true |
