diff options
author | 2020-07-27 20:12:05 +0200 | |
---|---|---|
committer | 2020-07-27 14:12:05 -0400 | |
commit | 943fc34f3994a7dd2b2e63ae844cef2dc4645fe9 (patch) | |
tree | 8b661a1bc0589e3f78d9cc06813536bfa310e58b /scripts/src/bus.lua | |
parent | b31859d6c534a192a5e36d2fc6a6de40b3629ec0 (diff) |
HP IPC: support for I/O slots and 82919 serial card added (#7001)
* mc68681: tx/rx clocking from timer fixed, added partial support for
break signal
* hp_ipc: support for I/O slots added, 82919 serial I/O card added
Diffstat (limited to 'scripts/src/bus.lua')
-rw-r--r-- | scripts/src/bus.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 6aff89a63e2..d6e3a9311fa 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -4105,6 +4105,20 @@ end --------------------------------------------------- -- +--@src/devices/bus/hp_ipc_io/hp_ipc_io.h,BUSES["HP_IPC_IO"] = true +--------------------------------------------------- + +if (BUSES["HP_IPC_IO"]~=null) then + files { + MAME_DIR .. "src/devices/bus/hp_ipc_io/hp_ipc_io.cpp", + MAME_DIR .. "src/devices/bus/hp_ipc_io/hp_ipc_io.h", + MAME_DIR .. "src/devices/bus/hp_ipc_io/82919.cpp", + MAME_DIR .. "src/devices/bus/hp_ipc_io/829919.h", + } +end + +--------------------------------------------------- +-- --@src/devices/bus/compis/graphics.h,BUSES["COMPIS_GRAPHICS"] = true --------------------------------------------------- |