summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/lynx.c
Commit message (Collapse)AuthorAgeFilesLines
* converted some more global_alloc_array() usage to ↵ Oliver Stöneberg2014-03-291-5/+2
| | | | dynamic_array/dynamic_buffer (nw)
* replaced some more malloc/free usage with ↵ Oliver Stöneberg2014-03-281-3/+3
| | | | global_alloc_array/global_free_array (nw)
* primary_screen -> first_screen() (nw) Miodrag Milanovic2014-03-151-1/+1
|
* Made palette settings for screen explicit and mandatory for ind16 mode (nw) Miodrag Milanovic2014-03-141-0/+1
|
* 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 :)
* first round of clang 3.4 fixes for MESS (nw) Oliver Stöneberg2014-02-201-0/+2
|
* (MESS) marked Game Boy, Game Boy Color, Game Boy Advance, Game Gear, ↵ Fabio Priuli2013-06-081-1/+1
| | | | | | | | | Intellivision, Lynx, Master System, MegaDrive / Genesis, NES / Famicom, Neo Geo Pocket, Neo Geo Pocket Color, PV-1000, Super Cassette Vision, Super NES / Super Famicom, Wonderswan and Wonderswan Color as supporting save states. PC-Engine supports save states too, but only for HuCard games and not for CDs. Please report issues with save and restore in these systems, if any, to MameTesters. [Fabio Priuli]
* (MESS) lynx.c: modernized sound emulation, slightly simplified blitter Fabio Priuli2013-05-191-2/+12
| | | | | | | | functions and added save state to the driver. [Fabio Priuli] out of whatsnew: as with gb and nes, I plan to add the support save flag before 0.149 after some more testing and, for the record, this driver would really need a volunteer willing to make devices out of the code for mikey and suzy chips, which is currently spread in multiple source files...
* cleanup (nw) Miodrag Milanovic2013-04-191-5/+4
|
* SNAPSHOT_LOAD and QUICKLOAD_LOAD made members, still need to cleanup (nw) Miodrag Milanovic2013-04-191-4/+2
|
* lynx and bbc cleanup (nw) Miodrag Milanovic2013-04-181-1/+1
|
* small cleanup (nw) Miodrag Milanovic2013-04-151-2/+1
|
* Removal of machine().root_device() where appropriate (nw) Miodrag Milanovic2013-04-141-1/+1
|
* changed machine().device("maincpu") with m_maincpu in mess tree part (nw) Miodrag Milanovic2013-04-101-2/+3
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-4/+4
|
* 6502: Rewrite modern, cycle-exact and interruptible [O. Galibert] Olivier Galibert2012-11-061-1/+1
|
* Since nobody checks for NULLs anyway, make Aaron Giles2012-09-191-1/+1
| | | | | | | | | | | | 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-4/+4
| | | | | | | 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]
* Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT ↵ Miodrag Milanovic2012-09-131-5/+2
| | | | changed to be members of state classes (no whatsnew)
* In device_state_interface, rename state() to state_int() Aaron Giles2012-09-111-1/+1
| | | | | | | | | | | | | | | 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]
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+193