diff options
| author | 2016-04-25 14:51:24 +0200 | |
|---|---|---|
| committer | 2016-04-25 14:51:24 +0200 | |
| commit | eac382d629a694ea4003afa4801634d308ed00cb (patch) | |
| tree | 70113199ba5ffe00acd046f1d4576b097034e43d /scripts | |
| parent | fe63ac9a20875837229069d83f3304de323029d4 (diff) | |
| parent | 13c88cdfd9f449c7762a2bc905afe5cbd6c5793e (diff) | |
Merge pull request #829 from fulivi/hp9845_dev
Hp9845: added capabilty to load option ROMs
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/bus.lua | 11 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 960177c5eb9..c525ce46732 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -2702,3 +2702,14 @@ if (BUSES["SVI_SLOT"]~=null) then MAME_DIR .. "src/devices/bus/svi3x8/slot/sv807.h", } end + +--------------------------------------------------- +-- +--@src/devices/bus/hp_optroms/hp_optrom.h,BUSES["HP_OPTROM"] = true +--------------------------------------------------- + +if (BUSES["HP_OPTROM"]~=null) then + files { + MAME_DIR .. "src/devices/bus/hp_optroms/hp_optrom.cpp", + } +end diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 871e3e247cb..bab155dec0a 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -623,6 +623,7 @@ BUSES["INTV_CTRL"] = true BUSES["IQ151"] = true BUSES["ISA"] = true BUSES["ISBX"] = true +BUSES["HP_OPTROM"] = true BUSES["KC"] = true BUSES["LPCI"] = true BUSES["M5"] = true |
