diff options
| author | 2015-04-12 13:13:33 -0400 | |
|---|---|---|
| committer | 2015-04-12 13:13:33 -0400 | |
| commit | b96b59caee24b5385e0fce1900c5cce956e76c8d (patch) | |
| tree | 1fdb8333a50acc292ab8259c8eadd6db9adad3e2 /scripts | |
| parent | 7977b2a8f6d627344f22dbc645bee53bdadd8810 (diff) | |
atlantis: added PCI9050 device skeleton. [R. Belmont]
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/machine.lua | 13 | ||||
| -rw-r--r-- | scripts/target/mame/mame.lua | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 9f0d7d4406f..e9691eb19b2 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2637,3 +2637,16 @@ if (MACHINES["FDC37C665GT"]~=null) then MAME_DIR .. "src/emu/machine/fdc37c665gt.h", } end + +--------------------------------------------------- +-- +--@src/emu/machine/pci9050.h,MACHINES += PCI9050 +--------------------------------------------------- + +if (MACHINES["PCI9050"]~=null) then + files { + MAME_DIR .. "src/emu/machine/pci9050.c", + MAME_DIR .. "src/emu/machine/pci9050.h", + } +end + diff --git a/scripts/target/mame/mame.lua b/scripts/target/mame/mame.lua index 09361d7902b..ed4f2eda6f8 100644 --- a/scripts/target/mame/mame.lua +++ b/scripts/target/mame/mame.lua @@ -554,6 +554,7 @@ MACHINES["STEPPERS"] = true --MACHINES["CORVUSHD"] = true --MACHINES["WOZFDC"] = true --MACHINES["DIABLO_HD"] = true +MACHINES["PCI9050"] = true -------------------------------------------------- -- specify available bus cores |
