diff options
| author | 2017-02-24 18:58:16 -0600 | |
|---|---|---|
| committer | 2017-02-25 11:58:16 +1100 | |
| commit | 9533352c6bd965e680f5f20285381d551d508228 (patch) | |
| tree | d30c10c3c1d271729f5dd81f80c87e1e978ce61d /scripts | |
| parent | a0aa981a6ec3bc29f71a38ab660f3645c48c7def (diff) | |
Fix Heath H19 keyboard (#2066)
* Fix Heath H19 keyboard
* Fix how enable/disable of 25th line is handled.
* Updated to use internal ROM in MM5740.
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 8e33f586b68..5816349fa71 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1238,6 +1238,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/mm5740.h,MACHINES["MM5740"] = true +--------------------------------------------------- + +if (MACHINES["MM5740"]~=null) then + files { + MAME_DIR .. "src/devices/machine/mm5740.cpp", + MAME_DIR .. "src/devices/machine/mm5740.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/kb3600.h,MACHINES["KB3600"] = true --------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 9d441207bdf..ba31c0bc232 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -471,6 +471,7 @@ MACHINES["MIOT6530"] = true MACHINES["MM58167"] = true MACHINES["MM58274C"] = true MACHINES["MM74C922"] = true +MACHINES["MM5740"] = true MACHINES["MOS6526"] = true MACHINES["MOS6529"] = true MACHINES["MOS6551"] = true |
