diff options
| author | 2018-03-24 13:40:45 +0100 | |
|---|---|---|
| committer | 2018-03-24 08:40:45 -0400 | |
| commit | 2ad88fd875f04a801cedb87a27d5d93d9b4bf302 (patch) | |
| tree | f3b4af1e783a6357a5a191ac37068458c9ef7750 /scripts | |
| parent | 8cc881837a18c96d2d31b546c6c617ebedb9d046 (diff) | |
M1COMM: Add preliminary MB89374 emulation (#3378)
* M1COMM: Add preliminary MB89374 emulation (nw)
* M1COMM: moved knowns roms to device. (nw)
* MB89374: arrays and savestates (nw)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/machine.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/arcade.lua | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index fc21510f620..120c158a560 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1660,6 +1660,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/mb89374.h,MACHINES["MB89374"] = true +--------------------------------------------------- + +if (MACHINES["MB89374"]~=null) then + files { + MAME_DIR .. "src/devices/machine/mb89374.cpp", + MAME_DIR .. "src/devices/machine/mb89374.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/mc146818.h,MACHINES["MC146818"] = true --------------------------------------------------- diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 94ce17252dd..1c2af45b3bf 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -480,6 +480,7 @@ MACHINES["MB87078"] = true --MACHINES["MB8795"] = true MACHINES["MB89352"] = true MACHINES["MB89371"] = true +MACHINES["MB89374"] = true --MACHINES["MC14411"] = true MACHINES["MC146818"] = true MACHINES["MC2661"] = true |
