diff options
author | 2020-12-13 09:54:03 +1100 | |
---|---|---|
committer | 2020-12-13 09:54:03 +1100 | |
commit | 4d7ef2749083e5e3aaf41e5b2c6b03a93c237c47 (patch) | |
tree | 47076411b64212db0145e73f953325affa9d49dc /scripts/target/mame/tiny.lua | |
parent | bc951bcfa9c9b4a54e40dc3ab5559531f820fafc (diff) |
-luaengine.cpp: Clean up render classes and expose screen image adjustments.
* Started moving Lua class reference to docs. Expecting people to find
the class reference material in the source isn’t going to help make it
approachable. The docs allow longer explanations, better formatting,
and cross reference links.
* Added another layout scripting example to the docs.
-goldnpkr.cpp: Minor clean-up.
* Improved the short names for Witch Card and Witch Game clone sets.
* Made Witch Up & Down artwork clickable.
* Added working Video Klein sets where the parent is a working Video
Klein set to the tiny subtarget.
* Removed history from the header comment - we have version control for
a readon.
Diffstat (limited to 'scripts/target/mame/tiny.lua')
-rw-r--r-- | scripts/target/mame/tiny.lua | 53 |
1 files changed, 30 insertions, 23 deletions
diff --git a/scripts/target/mame/tiny.lua b/scripts/target/mame/tiny.lua index f91c7f16120..c41ccc37a9d 100644 --- a/scripts/target/mame/tiny.lua +++ b/scripts/target/mame/tiny.lua @@ -16,63 +16,68 @@ -- drivers referenced in tiny.lst. -------------------------------------------------- -CPUS["Z80"] = true +CPUS["COP400"] = true CPUS["M6502"] = true -CPUS["MCS48"] = true -CPUS["MCS51"] = true CPUS["M6800"] = true CPUS["M6805"] = true CPUS["M6809"] = true CPUS["M680X0"] = true +CPUS["MCS48"] = true +CPUS["MCS51"] = true CPUS["TMS9900"] = true -CPUS["COP400"] = true +CPUS["Z80"] = true -------------------------------------------------- -- Specify all the sound cores necessary for the -- drivers referenced in tiny.lst. -------------------------------------------------- -SOUNDS["SAMPLES"] = true +SOUNDS["ASTROCADE"] = true +SOUNDS["AY8910"] = true +SOUNDS["CEM3394"] = true SOUNDS["DAC"] = true SOUNDS["DISCRETE"] = true -SOUNDS["AY8910"] = true -SOUNDS["YM2151"] = true -SOUNDS["ASTROCADE"] = true -SOUNDS["TMS5220"] = true -SOUNDS["OKIM6295"] = true SOUNDS["HC55516"] = true -SOUNDS["YM3812"] = true -SOUNDS["CEM3394"] = true +SOUNDS["OKIM6295"] = true +SOUNDS["SAMPLES"] = true +SOUNDS["TMS5220"] = true SOUNDS["VOTRAX"] = true +SOUNDS["YM2151"] = true +SOUNDS["YM3812"] = true + -------------------------------------------------- -- specify available video cores -------------------------------------------------- +VIDEOS["MC6845"] = true + + -------------------------------------------------- -- specify available machine cores -------------------------------------------------- MACHINES["6821PIA"] = true -MACHINES["ADC0808"] = true -MACHINES["TTL74148"] = true -MACHINES["TTL74153"] = true -MACHINES["TTL74157"] = true -MACHINES["TTL7474"] = true -MACHINES["TTL74259"] = true -MACHINES["RIOT6532"] = true -MACHINES["PIT8253"] = true -MACHINES["Z80CTC"] = true -MACHINES["Z80PIO"] = true MACHINES["68681"] = true +MACHINES["ADC0808"] = true MACHINES["BANKDEV"] = true MACHINES["GEN_LATCH"] = true MACHINES["INPUT_MERGER"] = true +MACHINES["NETLIST"] = true MACHINES["OUTPUT_LATCH"] = true +MACHINES["PIT8253"] = true +MACHINES["RIOT6532"] = true MACHINES["TICKET"] = true +MACHINES["TIMEKPR"] = true +MACHINES["TTL74148"] = true +MACHINES["TTL74153"] = true +MACHINES["TTL74157"] = true +MACHINES["TTL74259"] = true +MACHINES["TTL7474"] = true MACHINES["WATCHDOG"] = true +MACHINES["Z80CTC"] = true MACHINES["Z80DAISY"] = true -MACHINES["NETLIST"] = true +MACHINES["Z80PIO"] = true -------------------------------------------------- @@ -81,6 +86,7 @@ MACHINES["NETLIST"] = true BUSES["CENTRONICS"] = true + -------------------------------------------------- -- This is the list of files that are necessary -- for building all of the drivers referenced @@ -167,6 +173,7 @@ files{ MAME_DIR .. "src/mame/machine/gaelco_ds5002fp.h", MAME_DIR .. "src/mame/drivers/looping.cpp", MAME_DIR .. "src/mame/drivers/supertnk.cpp", + MAME_DIR .. "src/mame/drivers/goldnpkr.cpp", } end |