diff options
author | 2024-02-11 00:13:00 +0100 | |
---|---|---|
committer | 2024-02-16 19:23:55 +0100 | |
commit | 300dcfaf79d0a7e12c8610d3f922df954f1f82c6 (patch) | |
tree | 4140d548fa030306519e098872787a1effb7563a /scripts/src | |
parent | fb3539ce0c26598adf08021c2ebfa3fb931172f9 (diff) |
Add a plg100-vl skeleton-ish. We have h8-h8 serial communications
reliability issues to track.
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 33646671a1f..a048bc78ab9 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -5518,3 +5518,18 @@ if (BUSES["PCI"]~=null) then MAME_DIR .. "src/devices/bus/pci/zr36057.h", } end + + +--------------------------------------------------- +-- +--@src/devices/bus/plg100/plg100.h,BUSES["PLG100"] = true +--------------------------------------------------- + +if (BUSES["PLG100"]~=null) then + files { + MAME_DIR .. "src/devices/bus/plg100/plg100.cpp", + MAME_DIR .. "src/devices/bus/plg100/plg100.h", + MAME_DIR .. "src/devices/bus/plg100/vl.cpp", + MAME_DIR .. "src/devices/bus/plg100/vl.h", + } +end |