diff options
author | 2016-05-22 10:56:10 +0200 | |
---|---|---|
committer | 2016-09-12 11:55:16 +0200 | |
commit | d8aa10fbc1c3669a89a50c7aa7a8cfd4b4ad6981 (patch) | |
tree | d87a401f145ccf49864b668e2b1ce8e2f5c2a626 /scripts | |
parent | 0036e43b7b5e33a91c0dd984cfc3686b917ac10c (diff) |
pcipc: sandbox for emulating a modern-ish pc (nw)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/src/machine.lua | 4 | ||||
-rw-r--r-- | scripts/src/video.lua | 12 | ||||
-rw-r--r-- | scripts/target/mame/mess.lua | 2 |
3 files changed, 18 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 16388610870..647e815f242 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1786,6 +1786,10 @@ if (MACHINES["PCI"]~=null) then MAME_DIR .. "src/devices/machine/i82875p.h", MAME_DIR .. "src/devices/machine/i6300esb.cpp", MAME_DIR .. "src/devices/machine/i6300esb.h", + MAME_DIR .. "src/devices/machine/i82439hx.cpp", + MAME_DIR .. "src/devices/machine/i82439hx.h", + MAME_DIR .. "src/devices/machine/i82371sb.cpp", + MAME_DIR .. "src/devices/machine/i82371sb.h", MAME_DIR .. "src/devices/machine/lpc.cpp", MAME_DIR .. "src/devices/machine/lpc.h", MAME_DIR .. "src/devices/machine/lpc-acpi.cpp", diff --git a/scripts/src/video.lua b/scripts/src/video.lua index 8958c7e3852..cad05c3ac1b 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -246,6 +246,18 @@ end -------------------------------------------------- -- +--@src/devices/video/mga2064w.h,VIDEOS["MGA2064W"] = true +-------------------------------------------------- + +if (VIDEOS["MGA2064W"]~=null) then + files { + MAME_DIR .. "src/devices/video/mga2064w.cpp", + MAME_DIR .. "src/devices/video/mga2064w.h", + } +end + +-------------------------------------------------- +-- --@src/devices/video/hd44102.h,VIDEOS["HD44102"] = true -------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 62a2c7e5251..520dea4f7fc 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -334,6 +334,7 @@ VIDEOS["VIC4567"] = true VIDEOS["SCN2674"] = true VIDEOS["GB_LCD"] = true VIDEOS["GBA_LCD"] = true +VIDEOS["MGA2064W"] = true -------------------------------------------------- -- specify available machine cores @@ -2445,6 +2446,7 @@ files { MAME_DIR .. "src/mame/drivers/ibmpc.cpp", MAME_DIR .. "src/mame/drivers/ibmpcjr.cpp", MAME_DIR .. "src/mame/drivers/pc.cpp", + MAME_DIR .. "src/mame/drivers/pcipc.cpp", MAME_DIR .. "src/mame/drivers/tandy1t.cpp", MAME_DIR .. "src/mame/video/pc_t1t.cpp", MAME_DIR .. "src/mame/video/pc_t1t.h", |