summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/dkong.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename *.c -> *.cpp in our source (nw) Miodrag Milanovic2015-11-081-3358/+0
|
* Pauline's turn (nw) Robbbert2015-10-281-0/+29
|
* Revert "Added some of screen orientations for test (nw)" Miodrag Milanovic2015-10-121-8/+1
| | | | This reverts commit f78e035fc1b06b4f8784a86064a14f0e9d46fda9.
* Added some of screen orientations for test (nw) Miodrag Milanovic2015-10-091-1/+8
|
* change flags from GAME_ to MACHINE_ David Haywood2015-07-291-37/+37
| | | | this better fits the drivers from MESS (which have always illogically used the GAME_ flags despite not being games) and also fits fine with arcade machines.
* Updates and fixes for places where we have major contributors decision (nw) Miodrag Milanovic2015-05-261-1/+1
|
* Added known authors to licenses tags (nw) Miodrag Milanovic2015-05-091-1/+1
|
* Added dummy license headers for MAME part (nw) Miodrag Milanovic2015-05-071-0/+2
|
* Fix for dkongjr dips - fixes MT#5916 Scott Stone2015-04-211-0/+7
| | | | http://mametesters.org/view.php?id=5916
* Cleanups and version bumpmame0158 Miodrag Milanovic2015-01-281-1/+1
|
* Added some documentation and confirmations on upgrade kits (nw) Scott Stone2015-01-221-11/+64
|
* Cleanups and version bumpmame0155 Miodrag Milanovic2014-10-151-2/+2
|
* not today tomboy Michaël Banaan Ananas2014-09-231-30/+0
|
* new clone added Michaël Banaan Ananas2014-09-221-22/+45
| | | | | --------------- Donkey Kong: Pauline Edition (hack, rev 5) [Clay Cowgill]
* 8257dma: replace it in dkong and kill it (nw) cracyc2014-04-301-8/+20
|
* z80dma: converted to use devcb2. nw. Fabio Priuli2014-04-291-14/+6
| | | | + fixed a couple of regressions caused by wrong tags in rev. 30091.
* i8257: updated to devcb2. nw. Fabio Priuli2014-04-121-24/+8
|
* Cleanups and version bumpmame0153 Miodrag Milanovic2014-04-071-3/+3
|
* latch8 is modern and devcb2 now (nw) Miodrag Milanovic2014-03-211-8/+7
|
* z80dma finalized modernizing (nw) Miodrag Milanovic2014-03-151-5/+3
|
* Checkpoint 2: Alex W. Jackson2014-03-151-2/+2
| | | | | | gfxdecode devices must now be assigned a palette in MCFG. Added palette devices to several MESS drivers and devices to comply with this requirement. This palette is assigned as a default to the gfx_elements created by the device (but still not used for drawing yet, except in the UI graphics viewer) Tilemaps now have a pointer to a palette device and use that palette for rgb32 drawing, rather than the palette of the screen or bitmap they are drawing to (since rgb32 screens don't have palettes now). When a tilemap is created, it takes its palette from the gfxdecode device it was created with, but you can change a tilemap's palette device with set_palette() at any time (doing this does not mark the tilemap dirty, since all tilemaps use indexed bitmaps internally)
* Made palette settings for screen explicit and mandatory for ind16 mode (nw) Miodrag Milanovic2014-03-141-0/+2
|
* MCFG_DEVICE_REMOVE("palette") replaced with proper MCFG_PALETTE_MODIFY (nw) Miodrag Milanovic2014-03-071-8/+8
|
* placed hack in driver_init hacks (nw) Miodrag Milanovic2014-03-021-0/+1
|
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-14/+19
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* Created gfxdecode_device instead of using machine fixed gfxdecode [Miodrag ↵ Miodrag Milanovic2014-02-161-3/+3
| | | | | | | | | | Milanovic] Updated all devices and drivers for using it. out of whatsnew: Note that it is made to work same as before, in some cases it can be more logic to move gfxdevice into subdevice itself then to keep it in main driver.
* Added 82s153’s from Ropeman (Roc ‘n Rope bootleg) and also corrected the ↵ Scott Stone2014-01-111-21/+21
| | | | rom names and locations. In addition, corrected some of the names of the one United States Donkey Kong Jr. set. [Kevin Eshbach]
* Fixed placement of some MCFG_S2650_FLAG_HANDLER entries. (nw) Wilbert Pol2014-01-111-1/+1
|
* Replaced FLAG fake IO port with a DEVCB2 callback [smf] smf-2014-01-111-3/+3
|
* best just apply the hard kit to 1 set Michaël Banaan Ananas2014-01-011-37/+3
|
* New clones added Scott Stone2013-12-311-0/+76
| | | | | ---------------- Donkey Kong (US set 1) with Hard Kit [Matt Ziolkowski, Rob Rings] Donkey Kong (US set 2) with Hard Kit [Matt Ziolkowski, Rob Rings]
* ok, marked dkongjrp as bootleg Michaël Banaan Ananas2013-12-021-4/+4
|
* lop sided gamelist as always Michaël Banaan Ananas2013-11-291-39/+39
|
* new clone added Michaël Banaan Ananas2013-11-291-34/+67
| | | | | ------------------- Donkey Kong Junior (P kit) [Chris Psaros]
* Cleanups and version bumpmame0151 Miodrag Milanovic2013-11-051-2/+2
|
* dkong: Changed two devices to be optional devices. Couriersud2013-11-021-3/+9
|
* Removed SOUND_START legacy MACRO. Added SOUND_START_MEMBER and ↵ Ivan Vangelista2013-10-271-1/+4
| | | | SOUND_RESET_MEMBER macros. (nw)
* Rewrite serial EEPROM devices, breaking them out into separate chips of Aaron Giles2013-07-291-5/+5
| | | | | | | | the proper size and protocol. Update all drivers, removing custom implementations, and replacing them with standard ones. Moved core read, write, erase functionality into the EEPROM base class a simulated delays in write/erase cycles. Still some more testing/verification work left to do.
* Split eeprom.c into a base class base_eeprom_device and a serial-specific Aaron Giles2013-07-271-1/+1
| | | | | | | | subclass serial_eeprom_device. Moved the latter into its own file eepromser.c and significantly cleaned up/simplified the code. The new code should be functionally the same as the previous code, but expect that to change soon. As a side-effect, the size and bus width of the EEPROM is now specified in the ADD macro rather than in the interface structure.
* removed implementation of legacy DEVCB_MEMORY_HANDLER and used members ↵ Miodrag Milanovic2013-04-241-16/+15
| | | | | instead (nw) this require clean compile
* various cpu lookup cleanup (nw) Miodrag Milanovic2013-04-151-6/+4
|
* more eeprom devices (nw) Miodrag Milanovic2013-04-121-6/+4
|
* changed machine().device("maincpu") with m_maincpu in mame tree part (nw) Miodrag Milanovic2013-04-101-9/+9
|
* removed devhelpr.h and trampolines in half modern devices,also southbridge ↵ Miodrag Milanovic2013-03-201-6/+6
| | | | also use am9517a device now (no whatsnew)
* Removal of not needed machine().root_device() (nw) Miodrag Milanovic2013-02-131-4/+4
|
* Cleanups and version bumpmame0148u1 Miodrag Milanovic2013-02-111-1/+0
|
* Modernization of drivers part 3 (no whatsnew) Miodrag Milanovic2013-02-061-21/+20
|
* output of new srcclean changes that are relatively small [smf] smf-2013-01-111-2/+0
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-1889/+1889
|
* Premature birth. Needs more work. Robbbert2012-12-141-31/+0
|