diff options
author | 2020-02-11 01:30:11 +0100 | |
---|---|---|
committer | 2020-02-10 19:30:11 -0500 | |
commit | 1f12ad3fca0d2a7a5e05716347f9a50417157693 (patch) | |
tree | 66804b01453eeeac143a3024f1c84ba56d0baf3c /scripts/src/machine.lua | |
parent | 08f3de11458a0ec214d79f914b76650fa0976e07 (diff) |
Alfaskop 4110 keyboard and related improvements (#6291)
* mc6844.cpp: WIP NEW DEVICE Motorola mc6844 DMA controller (devicified from swtpc09.cpp)
* 6821pia.cpp: improved LOG messages a bit
* mc6854: Added support for external clocks, DMA, improved LOG messages and fine tuning of IRQ handling
* mc6846: Removed nonexistant CP1 output callback and added a CP1 input interface call
* 6850acia.cpp: Updated use of logmacro.h
* alfaskop4110: WIP added keyboard and fixed build errors
Diffstat (limited to 'scripts/src/machine.lua')
-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 d831ac381ca..9188507cce4 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1897,6 +1897,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/mc6844.h,MACHINES["MC6844"] = true +--------------------------------------------------- + +if (MACHINES["MC6844"]~=null) then + files { + MAME_DIR .. "src/devices/machine/mc6844.cpp", + MAME_DIR .. "src/devices/machine/mc6844.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/mc6846.h,MACHINES["MC6846"] = true --------------------------------------------------- |