diff options
author | 2016-08-15 23:43:06 +0300 | |
---|---|---|
committer | 2016-08-16 11:15:29 +0300 | |
commit | e85958b647ca508bdb09e6b32887b2a800f18927 (patch) | |
tree | e798308879ce10dce33ea18476a4b4ae5cdb7991 /scripts/src | |
parent | 9e3f53356d10a7d8b5920949e3446fc7e55d7c31 (diff) |
compis: Created a bus for the graphics card slot. [Curt Coder]
Diffstat (limited to 'scripts/src')
-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 d15d71fee78..65ce22d8b8d 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -2865,3 +2865,17 @@ if (BUSES["HP_OPTROM"]~=null) then MAME_DIR .. "src/devices/bus/hp_optroms/hp_optrom.cpp", } end + +--------------------------------------------------- +-- +--@src/devices/bus/compis/graphics.h,BUSES["COMPIS_GRAPHICS"] = true +--------------------------------------------------- + +if (BUSES["COMPIS_GRAPHICS"]~=null) then + files { + MAME_DIR .. "src/devices/bus/compis/graphics.cpp", + MAME_DIR .. "src/devices/bus/compis/graphics.h", + MAME_DIR .. "src/devices/bus/compis/hrg.cpp", + MAME_DIR .. "src/devices/bus/compis/hrg.h", + } +end |