diff options
author | 2019-04-17 15:40:23 -0400 | |
---|---|---|
committer | 2019-04-17 15:41:23 -0400 | |
commit | cdd6766fe48154e389ae639c60023a28d28d1849 (patch) | |
tree | 47cbc9f95b08ce5072884e699277c7743a3c0062 /scripts/src/machine.lua | |
parent | 320677695062222adfefc501fb384af86b863033 (diff) |
scc68070: Merge CPU device with on-chip peripheral emulation
- Add internal clock divider
- Add a few crude hacks to force status bits in unemulated UART and I2C
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 91e24545359..611d33f7bf7 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2543,6 +2543,17 @@ end --------------------------------------------------- -- +--@src/devices/machine/scc68070.h,MACHINES["SCC68070"] = true +--------------------------------------------------- +if (MACHINES["SCC68070"]~=null) then + files { + MAME_DIR .. "src/devices/machine/scc68070.cpp", + MAME_DIR .. "src/devices/machine/scc68070.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/scnxx562.h,MACHINES["DUSCC"] = true --------------------------------------------------- |