diff options
| author | 2017-08-16 10:37:39 +0200 | |
|---|---|---|
| committer | 2017-08-16 10:38:22 +0200 | |
| commit | 4c5ed8b64b6ce10de022a151b9d647c3b25fcab1 (patch) | |
| tree | 11b11a6551835d9a83ac20e5321af5ff00f44a70 /scripts | |
| parent | 2c317e49e23e9fb9bc0214c6eee1156cee8a8c87 (diff) | |
hp85: implemented tape drive
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/machine.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 0683ab0a0b9..277d6ba95e5 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1012,6 +1012,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/1ma6.h,MACHINES["1MA6"] = true +--------------------------------------------------- + +if (MACHINES["1MA6"]~=null) then + files { + MAME_DIR .. "src/devices/machine/1ma6.cpp", + MAME_DIR .. "src/devices/machine/1ma6.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/i2cmem.h,MACHINES["I2CMEM"] = true --------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 33a1cf081d6..eb8a51930a3 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -415,6 +415,7 @@ MACHINES["F3853"] = true MACHINES["HD63450"] = true MACHINES["HD64610"] = true MACHINES["HP_TACO"] = true +MACHINES["1MA6"] = true MACHINES["I2CMEM"] = true MACHINES["I7220"] = true MACHINES["I80130"] = true |
