diff options
| author | 2016-08-15 23:43:06 +0300 | |
|---|---|---|
| committer | 2016-08-16 11:15:29 +0300 | |
| commit | e85958b647ca508bdb09e6b32887b2a800f18927 (patch) | |
| tree | e798308879ce10dce33ea18476a4b4ae5cdb7991 /scripts | |
| parent | 9e3f53356d10a7d8b5920949e3446fc7e55d7c31 (diff) | |
compis: Created a bus for the graphics card slot. [Curt Coder]
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/bus.lua | 14 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 2 |
2 files changed, 15 insertions, 1 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 diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 3146e53bbbc..5e68ffc8105 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -623,6 +623,7 @@ BUSES["CGENIE_PARALLEL"] = true BUSES["CHANNELF"] = true BUSES["COCO"] = true BUSES["COLECO"] = true +BUSES["COMPIS_GRAPHICS"] = true BUSES["COMPUCOLOR"] = true BUSES["COMX35"] = true BUSES["CPC"] = true @@ -2854,7 +2855,6 @@ files { createMESSProjects(_target, _subtarget, "telenova") files { MAME_DIR .. "src/mame/drivers/compis.cpp", - MAME_DIR .. "src/mame/includes/compis.h", MAME_DIR .. "src/mame/machine/compiskb.cpp", MAME_DIR .. "src/mame/machine/compiskb.h", } |
