summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/gba.c
Commit message (Collapse)AuthorAgeFilesLines
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-3/+4
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* MESS part of ATTR_PRINTF review (nw) Oliver Stöneberg2014-02-251-1/+1
|
* Cleanups and version bumpmame0149 Miodrag Milanovic2013-06-111-6/+6
|
* (MESS) gba.c: gaining back some performance. nw. Fabio Priuli2013-06-021-4/+6
| | | | now the driver should be as fast as it was before the slot-ification, or very close. thanks to Micko for pointing me to the right example :)
* Moved default card config, device inputs and clock off the slot interface so ↵ smf-2013-05-291-1/+1
| | | | they can be specified for all cards [smf]
* (MESS) gba: made save states more robust. [Fabio Priuli] Fabio Priuli2013-05-251-0/+87
|
* (MESS) gba: modernized the video (i.e. moved variables inside the state ↵ Fabio Priuli2013-05-251-2/+1
| | | | class). nw.
* (MESS) gba: updated the driver to use slot devices for carts and removed Fabio Priuli2013-05-251-985/+52
| | | | | | | | | on-cart flash ram devices from main gba now that they can be properly implemented on carts which have them [Fabio Priuli] The main difference for end users is that games using flash ram for saves won't save anymore progresses in a nvram/game_name.nv file but in a file inside nvram/game_name/ folder. Many thanks to Micko for his recent changes to nvram devices which allowed to still save these data per-game!
* (MESS) gameboy: modernized sound emulation and added save state [Fabio Priuli] Fabio Priuli2013-05-181-51/+51
|
* Went through Nintendo drivers and like for the nes earlier, made using the ↵ Scott Stone2013-04-251-2/+2
| | | | default keyboard controls attempted to follow left to right button order on actual controller or machine. (nw)
* Cleanups and version bumpmame0148u1 Miodrag Milanovic2013-02-111-3/+3
|
* (MESS) gba.c: Another small tagmap cleanup (nw) Wilbert Pol2013-02-081-1/+1
|
* (MESS) gba.c: switched ioport tagmap lookup to member variable. (nw) Wilbert Pol2013-02-081-1/+1
|
* (MESS) gba.c: Minor cleanups (nw) Wilbert Pol2013-02-081-42/+41
|
* Started moving DEVICE_IMAGE_ functions into driver_device classes. (nw) Wilbert Pol2013-02-051-2/+2
|
* machine_notify_delegate modernization (nw) Miodrag Milanovic2013-02-041-14/+12
|
* gba: remove unnecessary casting (nw) R. Belmont2013-01-271-2/+2
|
* [GBA] Cleaned up tag usage outside of the startup path. [MooglyGuy] Ryan Holtz2013-01-271-179/+140
|
* output of new srcclean changes that are relatively small [smf] smf-2013-01-111-7/+0
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-62/+62
|
* modernization or timer callbacks part 2 (no whatsnew) Miodrag Milanovic2012-09-241-106/+101
|
* Since nobody checks for NULLs anyway, make Aaron Giles2012-09-191-12/+12
| | | | | | | | | | | | device_memory_interface::space() assert against NULL and return a reference, and pushed references throughout all address space usage in the system. Added a has_space() method to check for those rare case when it is ambiguous. [Aaron Giles] Also reinstated the generic space and added fatal error handlers if anyone tries to actually read/write from it.
* Memory handler normalization, part 2. Change legacy Aaron Giles2012-09-171-3/+3
| | | | | | | read/write handlers to take an address_space & instead of an address_space *. Also update pretty much all other functions to take a reference where appropriate. [Aaron Giles]
* Memory handler normalization, part 1. Aaron Giles2012-09-171-51/+51
| | | | | | | | | | | | | READ/WRITE_DEVICE*_HANDLERs are now passed an address_space &, and the 8-bit variants get a mem_mask as well. This means they are now directly compatible with the member function delegates. Added a generic address space to the driver_device that can be used when no specific address space is available. Also added DECLARE_READ/WRITE_DEVICE*_HANDLER macros to declare device callbacks with default mem_mask parameters. [Aaron Giles]
* Clean-ups and version bumpmame0147 Miodrag Milanovic2012-09-171-2/+2
| | | note: hoarded dump removed too from coco_cart.xml, this will not be tolerated
* Pass 2 of struct modernization. Aaron Giles2012-09-151-4/+4
|
* First pass at modernizing struct definitions. Aaron Giles2012-09-151-2/+1
|
* Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT ↵ Miodrag Milanovic2012-09-131-75/+70
| | | | changed to be members of state classes (no whatsnew)
* Clear out remaining global inlines in diexec.h. Aaron Giles2012-09-121-3/+3
|
* In device_state_interface, rename state() to state_int() Aaron Giles2012-09-111-2/+2
| | | | | | | | | | | | | | | and set_state() to set_state_int() for consistency. Update all callers. Also add set_pc() helper and updated all callers to use that instead of set_state_int(STATE_GENPC) [Aaron Giles] Added device_t::state() method to get the state interface. Added redundant device_state_interface::state() method to catch redundant use of it. [Aaron Giles] Removed cpu_get_reg() and cpu_set_reg() macros in favor of using the above methods. [Aaron Giles]
* Add safe_pc() and safe_pcbase() methods to device_t. Aaron Giles2012-09-111-7/+7
| | | | | | Convert all cpu_get_pc() to safe_pc() and cpu_getpreviouspc() to safe_basepc(). Removed the old macros.
* added missing \n to more fatalerror() calls (no whatsnew) Oliver Stöneberg2012-09-091-2/+2
|
* fixed some warnings about unreachable statements reported by cppcheck (no ↵ Oliver Stöneberg2012-09-081-6/+7
| | | | whatsnew)
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+3216