diff options
author | 2018-03-24 13:40:45 +0100 | |
---|---|---|
committer | 2018-03-24 08:40:45 -0400 | |
commit | 2ad88fd875f04a801cedb87a27d5d93d9b4bf302 (patch) | |
tree | f3b4af1e783a6357a5a191ac37068458c9ef7750 /scripts/src | |
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/src')
-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 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 --------------------------------------------------- |