diff options
author | 2014-02-01 08:05:15 +0000 | |
---|---|---|
committer | 2014-02-01 08:05:15 +0000 | |
commit | 3b7a999c26497684b12a216ea2c6f12978eac289 (patch) | |
tree | 7eb4065c63ead2ab46e7ba9edbd013457cb57971 /src/mess/machine/nes_unif.inc | |
parent | e86724831d7fc8dd208fb6a552dd2a520813c96f (diff) |
(MESS) nes.c: Added support for NROM368 homebrew PCB. [Fabio Priuli]
nes.c: Fixed support for BMC-12in1 PCB, based on Cah4e3's research. [Fabio Priuli]
Diffstat (limited to 'src/mess/machine/nes_unif.inc')
-rw-r--r-- | src/mess/machine/nes_unif.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mess/machine/nes_unif.inc b/src/mess/machine/nes_unif.inc index f93ceb33a87..bf68e1cf262 100644 --- a/src/mess/machine/nes_unif.inc +++ b/src/mess/machine/nes_unif.inc @@ -135,10 +135,12 @@ static const unif unif_list[] = { "BMC-70IN1", 0, 0, CHRRAM_0, UNSUPPORTED_BOARD}, // mapper 236? { "BMC-70IN1B", 0, 0, CHRRAM_0, UNSUPPORTED_BOARD}, // mapper 236? { "BMC-42IN1RESETSWITCH", 0, 0, CHRRAM_0, UNSUPPORTED_BOARD}, // mapper 60? + { "PEC-586", 0, 0, CHRRAM_0, UNSUPPORTED_BOARD}, { "UNL-DANCE", 0, 0, CHRRAM_0, UNSUPPORTED_BOARD}, { "UNL-DRIPGAME", 0, 0, CHRRAM_0, UNSUPPORTED_BOARD}, // [by Quietust - we need more info] { "UNL-CITYFIGHT", 0, 0, CHRRAM_0, UNSUPPORTED_BOARD}, - { "UNL-OneBus", 0, 0, CHRRAM_0, UNSUPPORTED_BOARD} + { "UNL-OneBus", 0, 0, CHRRAM_0, UNSUPPORTED_BOARD}, + { "UNL-DANCE2000", 0, 0, CHRRAM_0, UNSUPPORTED_BOARD} }; const unif *nes_unif_lookup( const char *board ) |