diff options
| author | 2025-06-18 23:29:08 +0100 | |
|---|---|---|
| committer | 2025-06-18 23:33:21 +0100 | |
| commit | 6a0a1af3f9b23d3a3f6ded0af5f1a4962a01d0c3 (patch) | |
| tree | b6eef9f85a6d3dcefe1b630e7ecefc4377884530 /scripts | |
| parent | 8b3f4adbf54781ccb175c26aa3e227199b15a632 (diff) | |
bus/acorn: Buffered the bus using device_memory_interface.
- Added BLK0 and PB lines to the interface.
- Moved existing devices into anonymous namespaces.
bus/acorn/atom: Added GDOS, GDOS-2015, MDCR, Speech Synthesis Module, EPROM Switch Card, Tube Interface, EF9345 80 Column Card.
bus/acorn/cu: Added High Resolution Graphics, CUBIO w/ Race Controllers, Teletext Video Interface.
bus/acorn/system: Added configuration to use 32K RAM card with the Atom.
acorn/acrnsys.cpp: Devicified the System keyboard with AY-3-4592 encoder.
Diffstat (limited to 'scripts')
| -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 6aedd9d6181..2a7985e7046 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -146,8 +146,22 @@ if (BUSES["ACORN"]~=null) then MAME_DIR .. "src/devices/bus/acorn/atom/discpack.h", MAME_DIR .. "src/devices/bus/acorn/atom/econet.cpp", MAME_DIR .. "src/devices/bus/acorn/atom/econet.h", + MAME_DIR .. "src/devices/bus/acorn/atom/gdos.cpp", + MAME_DIR .. "src/devices/bus/acorn/atom/gdos.h", + MAME_DIR .. "src/devices/bus/acorn/atom/gdos2015.cpp", + MAME_DIR .. "src/devices/bus/acorn/atom/gdos2015.h", + MAME_DIR .. "src/devices/bus/acorn/atom/mdcr.cpp", + MAME_DIR .. "src/devices/bus/acorn/atom/mdcr.h", MAME_DIR .. "src/devices/bus/acorn/atom/sid.cpp", MAME_DIR .. "src/devices/bus/acorn/atom/sid.h", + MAME_DIR .. "src/devices/bus/acorn/atom/speech.cpp", + MAME_DIR .. "src/devices/bus/acorn/atom/speech.h", + MAME_DIR .. "src/devices/bus/acorn/atom/switch.cpp", + MAME_DIR .. "src/devices/bus/acorn/atom/switch.h", + MAME_DIR .. "src/devices/bus/acorn/atom/tube.cpp", + MAME_DIR .. "src/devices/bus/acorn/atom/tube.h", + MAME_DIR .. "src/devices/bus/acorn/atom/vdu80.cpp", + MAME_DIR .. "src/devices/bus/acorn/atom/vdu80.h", MAME_DIR .. "src/devices/bus/acorn/cms/4080term.cpp", MAME_DIR .. "src/devices/bus/acorn/cms/4080term.h", MAME_DIR .. "src/devices/bus/acorn/cms/fdc.cpp", @@ -156,6 +170,12 @@ if (BUSES["ACORN"]~=null) then MAME_DIR .. "src/devices/bus/acorn/cms/hires.h", MAME_DIR .. "src/devices/bus/acorn/cms/ieee.cpp", MAME_DIR .. "src/devices/bus/acorn/cms/ieee.h", + MAME_DIR .. "src/devices/bus/acorn/cu/cubio.cpp", + MAME_DIR .. "src/devices/bus/acorn/cu/cubio.h", + MAME_DIR .. "src/devices/bus/acorn/cu/cugraph.cpp", + MAME_DIR .. "src/devices/bus/acorn/cu/cugraph.h", + MAME_DIR .. "src/devices/bus/acorn/cu/teletext.cpp", + MAME_DIR .. "src/devices/bus/acorn/cu/teletext.h", MAME_DIR .. "src/devices/bus/acorn/system/32k.cpp", MAME_DIR .. "src/devices/bus/acorn/system/32k.h", MAME_DIR .. "src/devices/bus/acorn/system/8k.cpp", |
