diff options
author | 2016-03-02 20:54:22 +0200 | |
---|---|---|
committer | 2016-03-02 20:54:32 +0200 | |
commit | 99ba45ff754a254779a02daef9459912bc4a89b1 (patch) | |
tree | a8aa17d7be0b5d3283e56080f8513857ad3de3d5 /scripts/src | |
parent | 7ccca7f3fc4f1257ac450cf690d983ff34d4fcb9 (diff) |
newbrain: Dumped the COP internal ROM. [Chris Despinidis]
newbrain: Rewrote the driver to modern standards. [Curt Coder]
cop400: Implemented the MICROBUS interface. [Curt Coder]
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/bus.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 9514e9f5a74..1379c572fa8 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -2572,3 +2572,18 @@ if (BUSES["M5"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/bus/newbrain/exp.h,BUSES["NEWBRAIN"] = true +--------------------------------------------------- + +if (BUSES["NEWBRAIN"]~=null) then + files { + MAME_DIR .. "src/devices/bus/newbrain/exp.cpp", + MAME_DIR .. "src/devices/bus/newbrain/exp.h", + MAME_DIR .. "src/devices/bus/newbrain/eim.cpp", + MAME_DIR .. "src/devices/bus/newbrain/eim.h", + MAME_DIR .. "src/devices/bus/newbrain/fdc.cpp", + MAME_DIR .. "src/devices/bus/newbrain/fdc.h", + } +end |