| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
|
|
|
| |
xiles, xfilesk, wbeachvl, wbeachvl12, wbeachvl13, and mugsmash (nw)
|
| |
|
|
|
|
| |
-video/cidelsa, comx35, pecom, tmc600: Removed MACHINE_CONFIG macros, nw
|
|
|
|
| |
thanks, edcross (nw)
|
|
|
|
| |
-drivers/actfancr, alpha68k, bloodbro, crospang, dcon, dec0, deniam, dynduke, fuukifg2, galspnbl, goodejan, legionna, nmg5, oneshot, prehisle, r2dx_v33, raiden, raiden2, sengokmj, snk68, spbactn, spdodgeb, stadhero, tbowl, toaplan1, toki, twincobr, umipoker, wardner, yunsun16: Removed MACHINE_CONFIG macros, nw
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
* splash.cpp: Update ROM names as per labels silkscreened on the PCB (nw)
See https://1drv.ms/u/s!AmAeZltAeJQ3gpE2RvS9Ck-fi25naw
* Fix ROM names as label + silkscreen (nw)
|
|
|
|
| |
callbacks (nw)
|
|
|
|
| |
-drivers/angelkds, argus, blktiger, chinagat, deadang, gaiden, goal92, himesiki, lastduel, lkage, megasys1, nmk16, pkscram, powerins, psychic5, sfkick, sidearms, splash, vigilant: Removed MACHINE_CONFIG macros, nw
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Someone needs to get MS QA to put some non-trivial modern C++
compliation tests in the acceptance tests for their C++ compiler. Maybe
MAME could even be a candidate. Well, that might be a plan if MS still
had any QA. At least this makes some lines shorter (at the cost of
needing more lines).
|
| |
|
| |
|
| |
|
|
|
|
| |
Defense. [Rob Justice]
|
| |
|
|\
| |
| | |
Bugfix/via6522
|
| | |
|
| | |
|
| |
| |
| |
| | |
These dumps contain no valid or even interesting data; the data (once swapped) just counts up from 0180 to 01BF. (Did an EEPROM programmer read back the commands by mistake?) At least quizpun2 can successfully reprogram the EEPROM if the data it fetches from there is invalid.
|
| | |
|
|/
|
|
| |
(nw) This most likely regressed with the SCC changes in d7eea22d29d754408c55f7320eefb02154ab966e.
|
| |
|
|
|
|
| |
-drivers/battlane, brkthru, bublbobl, dec8, exprraid, fantland, karnov, matmania, metlclsh, missb2, renegade, sidepckt, suna16, tecmo: Removed MACHINE_CONFIG macros, nw
|
|
|
|
| |
-drivers/2mindril, aerofgt, asuka, bbusters, bingowav, crshrace, f1gp, fromanc2, gstriker, inufuku, mcatadv, neoprint, ninjaw, othunder, pipedrm, slapshot, suprslam, taito_b, taito_f2, taito_h, taito_x, taito_z, taitoair, taotaido, warriorb, wc90, welltris, wgp, yuvomz80: Removed MACHINE_CONFIG macros, nw
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* goldstar.cpp: Mark empty PLD dumps from protected devices as NO_DUMP (nw)
* igs009.cpp: Mark empty PLD dumps from protected devices as NO_DUMP (nw)
* kingdrby.cpp: Mark empty PLD dumps from protected devices as NO_DUMP (nw)
* funworld.cpp: Mark empty PLD dumps from protected devices as NO_DUMP (nw)
* system16.cpp: Mark empty PLD dumps from protected devices as NO_DUMP (nw)
* jackie.cpp: Mark empty PLD dumps from protected devices as NO_DUMP (nw)
* gaiden.cpp: Mark empty PLD dumps from protected devices as NO_DUMP (nw)
* polepos.cpp: Mark empty PLD dumps from protected devices as NO_DUMP (nw)
* gei.cpp: Mark empty PLD dumps from protected devices as NO_DUMP (nw)
* vsnes.cpp: Mark empty PLD dumps from protected devices as NO_DUMP (nw)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* [Rainbow-100]: document driver state (and remove bloat)
Venix 86-R (plus Boston Softworks Extensions) working (tested yesterday), just follow https://github.com/bsdimp/venix/blob/master/doc/MESS-RB-INSTALL.md
Noted regressions in the PC subsystem (3.5 " DS DD images and 5.25 SSDD at slot 3 +4 ) after (?) April 2018. Can't fix these myself, though (effect: file content broken while directory listing seems OK; seek errors and 'write fault error reading from X' when copying).
UCSD Forth and Pascal expects 4 identical QD drives, so definitions for PC-style drives in slot 3 and 4 were commented out.
* [Rainbow-100]: fix regression introduced 2018-12-05
Incorrect polarity in routine: WRITE8_MEMBER(rainbow_state::diagnostic_w)
[before]- m_SCREEN_BLANK = (data & 2) ? false : true;
[0.2.05]+ m_screen_blank = BIT(data, 1);
[now]: m_screen_blank = BIT(data, 1) ? false : true;
See
https://git.redump.net/mame/commit/?id=ccd87f82eccea439f54cea6b765178d1dea409c9
|
|\
| |
| | |
cps3.cpp : Correct color fading behavior closer to real hardware
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
card night etc. to working) (#4439)
* XaviX work
new Software List items [Sean Riddle, David Haywood]
ekara_japan_d:dc0002 BAT Volume 6 (Japan) (DC0002-BAT)
ekara_japan_d:dc0005 TV Pop Volume 9 (Japan) (DC0005-TPJ)
ekara_japan_p:pc0001 BHT Volume 4 (Japan) (PC0001-BHT)
ekara_japan_p:pc0003 ENB Volume 1 (Japan) (PC0003-ENB)
ekara_japan_g:gc0001 BAT Volume 1 (Japan) (GC0001-BAT)
ekara_japan_g:gc0016 TV Pop Volume 5 (Japan) (GC0016-TPJ)
ekara_japan_web:ekaraweb12 e-kara Web cartridge 12M (blank) (Japan)
new clones
e-kara (US?, NTSC, set 2) [Sean Riddle]
enable support for 'p' type cartridges for use with ddrfammt [David Haywood]
various documentation improvements [Sean Riddle, David Haywood]
(there are also 3 bad dumps, currently commented out, will replace later)
* improved filenames (nw)
* for later (nw)
* checkpoint (nw)
* seeprom stuff (nw)
* (nw)
* correctly saves, does not correctly reload, also promote popira and ddrfammt to working
* new Software List entries [Sean Riddle, David Haywood]
ekara_japan:ec0001 J-Pop Mix Volume 1 (Japan) (EC0001-JPM)
ekara_japan:ec0032 ANM Volume 2 (Japan) (EC0032-ANM)
ekara_japan:ec0037 ENK Volume 4 (Japan) (EC0037-ENK)
ekara_japan:ec0046 J-Pop Mix Volume 20 (Japan) (EC0046-JPM)
ekara_japan:ec0005 J-Pop Mix Volume 5 (Japan) (EC0005-JPM)
ekara_japan:ec0007 1976-78 Volume 1 (Japan) (EC0007-G76)
ekara_japan:ec0079 ETZ (Japan) (EC0079-ETZ)
ekara_japan:ec0082 Matthew's Best Hit Selection (Japan) (EC0082-MBH)
ekara_japan:ec0009 ANM Volume 1 (Japan) (EC0009-ANM)
ekara_japan_en:en3 EN-3 (Japan)
ekara_japan_m:mc0013 KSM Mini Volume 5 (Japan) (MC0005-KSM)
ekara_japan_s:sc0012 SAI (series 3) Volume 3 (Japan) (SC0012-SAI)
ekara_japan_s:sc0004 SAI (series 1) Volume 1 (Japan) (SC0004-SAI)
ekara_japan_g:gc0002 BHT Volume 1 (Japan) (GC0002-BHT)
ekara_japan_g:gc0003 BAT Volume 2 (Japan) (GC0003-BAT)
ekara_japan_g:gc0004 BHT Volume 2 (Japan) (GC0004-BHT)
ekara_japan_p:pc0004 BHT Volume 7 (Japan) (PC0004-BHT)
* (nw)
* notes (nw)
* (nw)
* this register seems to be r/w (nw)
* fix crash in popira when pausing (requires register readback)
* save state stuff (nw)
* give excite fishing some inputs while I'm making misc minor changes (nw)
* also promote the Nostalgia games, and Card Night, as they have simple digital inputs and seem to work
* (nw)
* copy+paste modernization
* 2 more dumps (nw)
* doesn't seem to have an seeprom (nw)
* preliminary taikodp controls (nw)
* P4 uses SEEPROM (nw)
* rejig some bases (nw)
|
| |
| |
| |
| | |
disabled
|
| |
| |
| |
| |
| |
| | |
FIFO; improve handling of interrupts and status register writes
mc2661: Detect framing and parity errors; allow disabling of side effects of reads
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The existing disk image was replaced by a new one created from the
master disk.
dsk_dsk: Increase maximum cell count
This allows for slightly out of spec disk images to run, like Theatre
Europe on the Einstein.
[Lord Sméagol (Carl Lloyd-Parker)]
|
| | |
|
| | |
|
| |
| |
| |
| | |
mc68901: Detect framing and parity errors and signal Rx error interrupt if enabled
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Basically, initialisers go in the constructor arguments, and things for setting format go in set_format.
* Initialisation patterns can be specified with an enum discriminator or with a FUNC and optionally a tag.
* Formats can be specified with an enum discriminator or a size and function pointer.
* You must always supply the number of entries when setting the format.
* When initislising with a paletter initialisation member, you can specify the entries and indirecte entries together.
* The palette_device now has a standard constructor, so use .set_entries if you are specifying entry count with no format/initialisation.
* Also killed an overload on delegates that wasn't being useful.
|
| |
| |
| |
| |
| |
| | |
PARITY_NONE; fix transmission of parity bit in PARITY_EVEN mode
i8251: Flag parity and framing errors in status register
|
| |
| |
| |
| |
| | |
-----------------------------------
Funky Jet (bootleg) [ClawGrip, Recreativas.org, The Dumping Union]
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
multiple (nw)
|