diff options
author | 2017-01-16 23:49:55 +0100 | |
---|---|---|
committer | 2017-01-16 23:49:55 +0100 | |
commit | a2f105b8e44283a6f3d467d98095903e6fd23abb (patch) | |
tree | 2c4fbe9d351b6a05fc0d95317769d0bbb8ddc1c6 /scripts/src/machine.lua | |
parent | b7f222a94a19d4269df8ded8efd29db50c223964 (diff) |
- WIP: Refactored device: MPCC 68561 (nw)
- 68230 PIT: Added support for the PSR register, H1-H4 sense and direct pin levels
- WIP: fccpu20: added mpcc device and serial interface (nw)
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index b4db9d9dcce..8e33f586b68 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -260,10 +260,10 @@ end --------------------------------------------------- -- ---@src/devices/machine/68561mpcc.h,MACHINES += 68561MPCC +--@src/devices/machine/68561mpcc.h,MACHINES["MPCC68561"] = true --------------------------------------------------- -if (MACHINES["68561MPCC"]~=null) then +if (MACHINES["MPCC68561"]~=null) then files { MAME_DIR .. "src/devices/machine/68561mpcc.cpp", MAME_DIR .. "src/devices/machine/68561mpcc.h", |