Commit Graph

27267 Commits

Author SHA1 Message Date
Ivan Vangelista
d6c07e4ca4 Fixed some taito_f2 palette regressions. (nw) 2014-03-06 19:57:50 +00:00
Roberto Fresca
2b545970db Some inputs technical info. 2014-03-06 18:42:15 +00:00
Roberto Fresca
5a7c6d21a9 Spacing... 2014-03-06 18:12:44 +00:00
Ivan Vangelista
6cf8be73c8 Hooked up sound in bnstars.c by borrowing code from ms32.c and adding the second YMF271. [Osso]
Out of whatsnew: Maybe this bnstars_state should become a derived class of ms32_state, since they seem almost identical except the 2 screens?
2014-03-06 18:08:15 +00:00
Roberto Fresca
90f8aba78f Fixed Big 10 palette regression. 2014-03-06 17:46:58 +00:00
David Haywood
059dedaa0b kill more redundant code (nw) 2014-03-06 16:34:19 +00:00
David Haywood
df69542717 update more to use modern palette device handling, removing redundant code (nw) 2014-03-06 16:10:50 +00:00
Oliver Stöneberg
4532da6717 re-enabled checks in src/lib/libflac/libFLAC/memory.c / removed definition of SIZE_MAX in src/lib/libflac/include/share/alloc.h (nw) 2014-03-06 16:05:26 +00:00
David Haywood
523f57b784 stop deroon blowing up.
(if there's a better solution, feel free, although if we move to a correct model where the palette device owns the ram I guess this is the way it will be done?)
2014-03-06 14:36:31 +00:00
Oliver Stöneberg
e54de28bf9 chdtest.py: log the unsupported mode (nw) 2014-03-06 14:32:03 +00:00
Miodrag Milanovic
e1cb7f6788 Video attributes are now per screen (nw) 2014-03-06 14:28:32 +00:00
David Haywood
03d3ddf76b more palette modernizations (nw) 2014-03-06 13:57:17 +00:00
Oliver Stöneberg
c51ae78d02 fixed reading of bits/sample in parse_wav_sample() on big-endian systems (nw) 2014-03-06 13:46:46 +00:00
David Haywood
85815bd033 more palette modernizations in some of my drivers (nw) 2014-03-06 13:42:49 +00:00
Jonathan Gevaryahu
288d32d209 (MESS) cat.c: invert centronics BUSY (still need to add the /ACK flipflop) [Lord Nightmare, smf] 2014-03-06 13:01:05 +00:00
Oliver Stöneberg
2d66475bbe restored some libflac code omitted in initial commit allowing big-endian compilation without hacks (nw) 2014-03-06 12:52:23 +00:00
Curt Coder
e451a22cfb (MAME) nbmj8688: Refactored to use HD61830 device. [Curt Coder] 2014-03-06 12:09:25 +00:00
Robbbert
32a6967ca9 (MESS) hunter2 : added lcd controller 2014-03-06 11:36:50 +00:00
Robbbert
56e70aab3f (MESS) hunter2 : added banking 2014-03-06 10:49:56 +00:00
Oliver Stöneberg
b26c3a4d61 removed a modification from a libflac file we don't even use (nw) 2014-03-06 09:43:50 +00:00
Oliver Stöneberg
067a651421 re-enabled log message I disabled when I was messing around with DEBUG for external libraries (nw) 2014-03-06 09:17:14 +00:00
Oliver Stöneberg
1b0946ae88 re-added some libflac code, that was missing/disabled in the initial commit (nw) 2014-03-06 08:56:40 +00:00
Robbbert
3c7ecc0d25 (MESS) New Skeleton [Robbbert, John Elliot]
-----------------------------------------------
Husky Hunter 2
2014-03-06 08:21:20 +00:00
Jonathan Gevaryahu
f9372ec51c (MESS) cat.c: Implemented watchdog counter readback, more documentation [Lord Nightmare] 2014-03-06 04:25:15 +00:00
R. Belmont
4d411b439f (MESS) apollo: Converted to use real ISA bus [R. Belmont]
omti8621: Converted to proper ISA card [R. Belmont]
2014-03-06 04:04:10 +00:00
Alex W. Jackson
f5f9dc3caa This isn't safe (nw) 2014-03-06 04:02:52 +00:00
Oliver Stöneberg
87c116cf1a pass VERSION define via compiler flags to libflac (nw) 2014-03-06 03:59:12 +00:00
R. Belmont
d631f2bdb1 (MESS) hisaturn: added v1.02 BIOS [zyrobs] 2014-03-06 02:39:17 +00:00
R. Belmont
18fcb2d4e5 (MESS) m5: Mirror input ports, allows new dump "Jankyo" to run. [R. Belmont, Ola Andersson] 2014-03-06 02:32:57 +00:00
David Haywood
8e07024752 some more palette cleanups (nw) 2014-03-06 02:01:34 +00:00
Michaël Banaan Ananas
c4e5068134 ah, virtual void palette_init(); doesnt exist anymore 2014-03-06 01:16:47 +00:00
David Haywood
803fea255d i'm informed there is a preference for doing things this way, even when the palette is 16-bits, so be it (nw) 2014-03-06 01:01:20 +00:00
David Haywood
0aa6e840cd modernize some other older palette handlers (nw) 2014-03-05 23:51:23 +00:00
David Haywood
1e92c5de80 remove some redundant in-driver palette handlers (nw)
(was a little surprised I needed MCFG_PALETTE_ENDIANNESS(ENDIANNESS_LITTLE) considering no fancy swapping is needed in the old 32-bit handlers.. but ok, it's always been that way)
2014-03-05 23:32:07 +00:00
David Haywood
2e21a4e10d RGBX for psikyosh.c (nw) 2014-03-05 23:00:33 +00:00
David Haywood
e3db84f9b3 convert "bnstars1" to use dual palettes.
note, needed to add PALETTE_FORMAT_XBRG for this game, also READ16_MEMBER(palette_device::read) IS necessary here because the ram is installed on every other word
AM_DEVREADWRITE16("palette",  palette_device, read, write, 0x0000ffff) AM_SHARE("palette")
and without the 'read' handler the wrong data gets read back for the RAM checks.
2014-03-05 20:53:52 +00:00
Scott Stone
2642203698 CPS1.c: Willow, Strider and Ghouls and Ghosts have some changed factory setting defaults as stated from manual. Also noted differences in bonus live coverage where applicable. [Tafoid] 2014-03-05 20:03:01 +00:00
Oliver Stöneberg
f6b0b18ad4 changed casing of FLAC folders to match official source distribution (nw) 2014-03-05 18:53:53 +00:00
Ivan Vangelista
1103ab2af2 few more for debug build (nw) 2014-03-05 17:39:47 +00:00
Ivan Vangelista
129ca79bff a fix for debug compile (nw) 2014-03-05 17:31:08 +00:00
Curt Coder
7040e55465 Added device_output_interface and macros MCFG_OUTPUT_INDEX/MCFG_OUTPUT_NAME which can be used to specify which output in the layout a device should use. [Curt Coder]
dm9368: devcb2. (nw)
2014-03-05 15:53:15 +00:00
Curt Coder
f646c03c65 hd61830: devcb2. (nw) 2014-03-05 13:33:57 +00:00
Miodrag Milanovic
d2fd2856a7 Moved optional_device<screen_device> m_screen and optional_device<palette_device> m_palette out of driver.* (nw) 2014-03-05 13:29:22 +00:00
Jonathan Gevaryahu
cc299c4066 (MESS) cat.c: updated comments with latest research. [Lord Nightmare] 2014-03-05 13:24:33 +00:00
Curt Coder
caa49d56a7 (MESS) c128: Fixed MMU clock. (nw) 2014-03-05 13:24:13 +00:00
Curt Coder
b78a774424 (MESS) c128: Fixed MMU clock. (nw) 2014-03-05 13:23:06 +00:00
Curt Coder
647886b12d mos8722: devcb2. (nw) 2014-03-05 13:14:47 +00:00
Ivan Vangelista
5a54c5cb7d Added missing DAC to cyclshtg / bronx, fixes missing sounds (MT03975). (nw) 2014-03-05 12:41:27 +00:00
Fabio Priuli
ca72f1cfec (MESS) sms: accurately emulated the behavior when mounting both a cart
and a card in the system, cleaned up RAM accesses, simplified code handling
cart/card/exp enable. [Enik Land]
2014-03-05 05:31:14 +00:00
Alex W. Jackson
7d51048dc6 Declaring indirect colors in MCFG is now mandatory. Removed dynamic creation and resizing of indirection tables [Alex Jackson] 2014-03-05 03:59:58 +00:00