summaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Cleanups and version bump.mame0129u5 Aaron Giles2009-02-2629-223/+207
|
* From: Duke [mailto:startaq@gmail.com] Aaron Giles2009-02-267-0/+36
| | | | | | | | | | | | | | | | Sent: Wednesday, February 25, 2009 5:20 AM To: submit@mamedev.org Subject: CIA update Hello, this patch adds support for the /PC output pin to the CIA emulation. From the datasheet "/PC will go low for one cycle following a read or write of PORT B.". This is needed for centronics printer emulation on the MESS side, but I imagine it would simplify/correct the emulation in some MAME amiga drivers as well (mquake.c for example). --Dirk
* From: Fabio Priuli [mailto:doge.fabio@gmail.com] Aaron Giles2009-02-261-1/+1
| | | | | | | | | | | | | Sent: Sunday, February 22, 2009 10:57 PM To: submit Subject: fix for MT02943 Fixed mjelctrn DSW read handler to agree with new tags. Best regards, Fabio Priuli
* From: Smitdogg Jones [mailto:jcsmith23@yahoo.com] Aaron Giles2009-02-261-5/+4
| | | | | | | | | | | | | | | Sent: Saturday, February 21, 2009 6:00 PM To: submit@mamedev.org Subject: Super Triv III redump Here's a new dump of Super Triv III. The only needed rom in this zip is triv3.u36, it replaces the bad rom from the previous dump (it was using a rom from Super Triv II). 3 of the question roms were slightly different from the last Super Triv III dump (see romident_romcmp.txt in the zip). I suspect they are bad in my dump because they create some garbage/nonsense for their categories in the game when I tried them. I included all the rom dumps in the zip in case someone wants to take a closer look at them but I didn't use any of the likely-bad roms in the diff for supertr3, I just replaced the missing rom at u36 and the game looks correct now. The prom at u17 was marked as bad_crc. Guru dumped it from this board (I sent it to him a few months ago) and it matches the bad_crc so I removed the flag. Same goes for statriv4, we have verified that it's the same crc on a real board so I removed the flag. I think the bad_crc flag needs to get removed from all the proms in this driver and just replaced with a comment that there is only a very small chance they are bad. Smitdogg
* From: Fabio Priuli [mailto:doge.fabio@gmail.com] Aaron Giles2009-02-261-5/+3
| | | | | | | | | | | | Sent: Sunday, February 22, 2009 7:06 AM To: submit Subject: fix for MT02920 another small fix. it's very nice to finally have tags passed to device interfaces, despite the few regressions that can have been introduced in the update :) Regards, Fabio Priuli
* From: Fabio Priuli [mailto:doge.fabio@gmail.com] Aaron Giles2009-02-261-1/+1
| | | | | | | | | | | | | | Sent: Sunday, February 22, 2009 12:39 AM To: submit Subject: fix fot MT02940 very tiny fix to taito_l inputs regards, Fabio Priuli
* New clone: U.S. Championship V'ball (US) [Smitdogg] Aaron Giles2009-02-262-43/+72
|
* New clone: Pipe Dream (World) [Corrado Tomaselli] Aaron Giles2009-02-262-2/+38
|
* New clone: The New Zealand Story (World, old version, older pcb) [Corrado ↵ Aaron Giles2009-02-262-7/+33
| | | | Tomaselli]
* New clones: Super Heli (Super Cobra bootleg) [Smitdogg] Aaron Giles2009-02-262-0/+25
|
* From: Atari Ace [mailto:atari_ace@verizon.net] Aaron Giles2009-02-2645-227/+238
| | | | | | | | | | | | | | Sent: Monday, February 16, 2009 7:10 PM To: submit@mamedev.org Cc: atariace@hotmail.com Subject: [patch] Add some missing static qualifiers Hi mamedev, This patch mostly adds missing static qualifiers, plus a few related header/name adjustments. In particular, I tackled m68kmake.c and tmsmake.c which exposed a fair amount of dead code. ~aa
* From: Christophe Jaillet [christophe.jaillet@wanadoo.fr] Aaron Giles2009-02-262-13/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sent: Monday, February 16, 2009 1:03 PM To: submit@mamedev.org Subject: Speed up 'src\mame\video\mcatadv.c' Hi, here is a patch against 'src\mame\video\mcatadv.c' This patch moves a call to 'memory_region' outside of a hot loop in the 'draw_sprites' function. This gives a fiew pourcents speed up in games such as 'nost'. Hope this helps, Best regards, Christophe Jaillet -- From: Christophe Jaillet [christophe.jaillet@wanadoo.fr] Sent: Monday, February 16, 2009 1:53 PM To: submit@mamedev.org Subject: Another speed up in 'src\mame\video\mcatadv.c' Hi, here is a patch against 'src\mame\video\mcatadv.c' This patch , by re-arranging the code, give a +/- 5% speed up in the emulation. Before, we : - fetch a pixel, - make some computation for lower/higher part of it - check if we should render it - test for priority - update destination if necessary With this patch, we check priority first in order to avoid useless processing and testing on pixel that can't be displayed due to priority reason. So in the best case, it is faster, in the worse case execution time should be more or less the same because : if ((drawxpos >= cliprect->min_x) && (drawxpos <= cliprect->max_x) && pix) is likely to be true (IMO). So the same tests are performed, only the order is different. Hope this helps, Best regards, Christophe Jaillet -- From: Christophe Jaillet [christophe.jaillet@wanadoo.fr] Sent: Monday, February 16, 2009 1:09 PM To: submit@mamedev.org Subject: Clean up of 'src\emu\tilemap.c' (with the patch...) Hi, here is a patch against 'src\emu\tilemap.c' This patch removes a variable called 'original_cliprect' from the top of 'tilemap_get_tile_flags'. This variable is useless because all cases that need it, already make the same copy in a variable with the same name, shodawing the former one. Hope this helps, Best regards, Christophe Jaillet
* From: abcd efgh [mailto:cix_999@yahoo.it] Aaron Giles2009-02-261-4/+5
| | | | | | | | | | Sent: Saturday, February 14, 2009 1:41 PM To: submit@mamedev.org Subject: galhustl oki Fixed oki frequency in galhustl. Bye Sonikos
* added code to draw girl in cherry master, disabled for now as we're probably ↵ davidhay2009-02-262-7/+21
| | | | missing an enable register / correct priority mixing.
* 02923: sonicbom: [debug] Writes extensively to the console Aaron Giles2009-02-261-1/+1
|
* 02930: cpu.mak typo and fix Aaron Giles2009-02-261-2/+2
|
* 02825: crossbow: Crash on "Crossing Bridge" stage Aaron Giles2009-02-261-2/+2
|
* 02956: bigkong: Year is 1981 according to the title screen Aaron Giles2009-02-2610-13/+13
| | | | | | | | | | | | 02938: mblkjack: Black Jack (Mirco) is actually Called 21 and the year is 1976. 02939: gp98: Year and manufacturer are 1998, Romtec Co. LTD according to the title screen 02955: parentj: Year is 1989 according to the title screen 02952: nss_sten: Year is shown on title screen as 1991 02951: vgoalsoc, vgoalsca: The year is 1994. 02958: magictg, magictga: The year is 1997 according to flyer 02950: bestri: Year of release is 1998 02949: chocomk: Year is 2002 and the manufacturer is Ecole Software
* 02962: All Sets in thepit.c: No Audio Aaron Giles2009-02-261-0/+2
|
* Fixed CPU tags in recently added drivers. Added interface to the C6280 sound Aaron Giles2009-02-2612-40/+65
| | | | | chip to let it specify the CPU. Fixed remaining duplicate device tags. Made validity check for duplicate devices fatal.
* M79-Ambush - Added Discrete sounds, fixed DIPs and added Self Test Lamp Output. Derrick Renaud2009-02-266-18/+390
|
* New games added or promoted from NOT_WORKING status Angelo Salese2009-02-262-1/+128
| | | | | | | | | --------------------------------------------------- Makaijan [Yasuhiro Ogawa] ====================================================================================== In default mode the text gfxs overwrites the title screen when you put bets, is it correct? (Notice that you should modify the bet button to try it because it's mapped at 2 as the start 2p button, it's a known MAMEtesters bug).
* improved note about cherry master girl display [David Haywood] davidhay2009-02-251-0/+17
|
* fix stray "maincpu" to "main" reversion in the last peplus.c submission. Brian Troha2009-02-251-2/+2
| | | My error, using 2 different trees.
* New Clone added: 10's or Better (Player's Edge Plus driver) Brian Troha2009-02-252-1/+22
|
* correct sprite rom loading on the secret agent bootleg davidhay2009-02-251-9/+10
|
* Agemame Integration [James Wallace] davidhay2009-02-2515-107/+8459
| | | (I haven't verified this works, just checking it in for now)
* added comment about display of girl. davidhay2009-02-251-0/+16
|
* Fixed rom loading in secretab. [Angelo Salese] Angelo Salese2009-02-251-24/+156
|
* hooked up the reel background colour writes to cherry master / new fruit ↵ davidhay2009-02-252-4/+15
| | | | bonus '96 etc. [David Haywood]
* corrects rom names in tnzs.c for older TNZS sets Brian Troha2009-02-251-6/+6
|
* Fixed validity check Angelo Salese2009-02-251-24/+24
|
* New games marked as GAME_NOT_WORKING Angelo Salese2009-02-252-5/+54
| | | | ------------------------------------ Super Jolly [f205v]
* Add validity check warning to flag games with duplicate device names. Aaron Giles2009-02-2517-143/+141
| | | | Cleaned up most instances, apart from the HuC6280 situation.
* Another batch of tagging, this time for speakers/screens: Aaron Giles2009-02-25274-2415/+2417
| | | | | | | | | | | SPEAKER/"left" -> "lspeaker" SPEAKER/"right" -> "rspeaker" SCREEN/"left" -> "lscreen" SCREEN/"right" -> "rscreen" SCREEN/"middle" -> "mscreen" SCREEN/"center" -> "cscreen" Added "left" and "right" to the validity check.
* Device tag renaming. Moving away from generic names like "main" Aaron Giles2009-02-251111-18522/+18531
| | | | | | | | | | | | | | | to names that capture the device type as well. Added validity checks for the short-term to prevent the continuance of this pattern (which I started :) Changes: CPU/"main" -> "maincpu" CPU/"audio" -> "audiocpu" CPU/"sound" -> "soundcpu" SCREEN/main -> "screen" (since it's the only one) Eventually, devices will be required to have unique tags within a machine, regardless of type.
* Fix visual C compile error. Derrick Renaud2009-02-251-1/+1
| | | | Not worth mentioning. Is there a better fix? Cast double to float error.
* repaired automat sprite rom (data is identical but bitswapped compared to ↵ davidhay2009-02-241-10/+50
| | | | original)
* new clones davidhay2009-02-242-0/+327
| | | | | | | | | | | ----- Automat (bootleg of Robocop) [Andrew Welburn, Philip Bennett, David Haywood] this is a heavily modified bootleg of Robocop. Phil hooked up some sound stuff, and I've got the graphics decoding sorted out. the tilemap transparency handling is different to the original, as are the sprites, this will need a significant amount of work one of the sprite roms is bad, but it looks like it should be possible to reconstruct it correctly from the main set.
* fix cps3 crash 02954 davidhay2009-02-241-2/+5
|
* Added a debug viewer for the blitter-based gfxs in the itgambl2.c [Angelo ↵ Angelo Salese2009-02-241-2/+65
| | | | Salese]
* Added a debug viewer for the blitter-based gfxs in the itgambl3.c [Angelo ↵ Angelo Salese2009-02-241-2/+66
| | | | Salese]
* New Games - NOT WORKING davidhay2009-02-232-3/+23
| | | | | | ----------------------- Diamond Touch (E - 30-06-97, Local) [Heihachi_73] Adonis (A - 25-05-98, NSW/ACT) [Heihachi_73]
* XTal and divisors verified in schematics Couriersud2009-02-231-1/+2
|
* Partially fixed asurabld/asurabus sound regression. [Phil Bennett] Phil Bennett2009-02-231-0/+1
| | | Anybody fancy merging the OPL3/ymf262 FM emulation with ymf278b? :)
* 02944: mustangb, tdragonb: Access Violation [Phil Bennett] Phil Bennett2009-02-231-2/+2
|
* 02947: turbosb6, turbosb7: [debug] Assertion [Phil Bennett] Phil Bennett2009-02-231-2/+2
|
* From: Atari Ace [mailto:atari_ace@verizon.net] Phil Bennett2009-02-231-2/+2
| | | | | | | | | | | | | Sent: Sunday, February 22, 2009 8:17 PM To: submit@mamedev.org Cc: atariace@hotmail.com Subject: [patch] Fix 02927: Many Sets using segaic16.c: Crash/Freeze while starting Hi mamedev, My multisession fix for fd1094 inadvertently dropped a call to memory_configure_bank that I wrongly thought was unnecessary. Reverting that part of the change seems to fix this bug. ~aa
* Forgot to add the modified mamedriv.c/mame.mak Angelo Salese2009-02-232-1/+4
|
* New games marked as GAME_NOT_WORKING Angelo Salese2009-02-232-0/+389
| | | | ------------------------------------ Kung-Fu Roushi [Angelo Salese, Roberto Fresca]