diff options
| author | 2017-06-26 14:16:54 -0500 | |
|---|---|---|
| committer | 2017-06-26 14:16:54 -0500 | |
| commit | 38436b340d6c76c0b86ef5b51a09e4c07067febe (patch) | |
| tree | d0cd2be8c8b4f44df43836b11829913a71cd0909 /scripts/src/bus.lua | |
| parent | 5ada035d175828c577d5912033ba2ce73f872055 (diff) | |
pc9801: move cbus to bus and add WIP mpu401 [Carl]
Diffstat (limited to 'scripts/src/bus.lua')
| -rw-r--r-- | scripts/src/bus.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 7ae85734f1e..fcc279fee3d 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -3087,3 +3087,23 @@ if (BUSES["PC1512"]~=null) then MAME_DIR .. "src/devices/bus/pc1512/mouse.h", } end + +--------------------------------------------------- +-- +--@src/devices/bus/cbus/pc9801_cbus.h,BUSES["CBUS"] = true +--------------------------------------------------- + +if (BUSES["CBUS"]~=null) then + files { + MAME_DIR .. "src/devices/bus/cbus/pc9801_26.cpp", + MAME_DIR .. "src/devices/bus/cbus/pc9801_26.h", + MAME_DIR .. "src/devices/bus/cbus/pc9801_86.cpp", + MAME_DIR .. "src/devices/bus/cbus/pc9801_86.h", + MAME_DIR .. "src/devices/bus/cbus/pc9801_118.cpp", + MAME_DIR .. "src/devices/bus/cbus/pc9801_118.h", + MAME_DIR .. "src/devices/bus/cbus/mpu_pc98.cpp", + MAME_DIR .. "src/devices/bus/cbus/mpu_pc98.h", + MAME_DIR .. "src/devices/bus/cbus/pc9801_cbus.cpp", + MAME_DIR .. "src/devices/bus/cbus/pc9801_cbus.h", + } +end |
