summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/lviv.c
Commit message (Collapse)AuthorAgeFilesLines
* converted some more global_alloc_array() usage to ↵ Oliver Stöneberg2014-03-291-11/+1
| | | | 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)
* removed usage of direct handler and timers for reseting (nw) Miodrag Milanovic2013-12-271-18/+2
|
* modernized speaker device. [Fabio Priuli] Fabio Priuli2013-06-041-1/+1
|
* A few less anonymous timers in the world. (nw) Andrew Gardner2013-05-271-3/+10
|
* made BEEP and RAM devices initialize in constructor of driver classes (nw) Miodrag Milanovic2013-04-231-6/+6
|
* cleanup (nw) Miodrag Milanovic2013-04-191-4/+3
|
* SNAPSHOT_LOAD and QUICKLOAD_LOAD made members, still need to cleanup (nw) Miodrag Milanovic2013-04-191-1/+1
|
* moving some static functions in driver state for MESS drivers plus some ↵ Miodrag Milanovic2013-04-181-37/+35
| | | | other modernization (nw)
* (MESS) cassette cleanup (nw) Miodrag Milanovic2013-04-171-2/+2
|
* small cleanup (nw) Miodrag Milanovic2013-04-151-12/+13
|
* Removal of machine().root_device() where appropriate (nw) Miodrag Milanovic2013-04-141-11/+11
|
* speaker tag lookup removal, also no need to use universal tag, since easier ↵ Miodrag Milanovic2013-04-121-2/+1
| | | | now to follow (nw)
* changed machine().device("maincpu") with m_maincpu in mess tree part (nw) Miodrag Milanovic2013-04-101-2/+2
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-6/+5
|
* Replace some *_DEVICE_HANDLER with _MEMBER calls in MESS section (no whatsnew) Miodrag Milanovic2012-10-031-59/+50
|
* modernization or timer callbacks part 2 (no whatsnew) Miodrag Milanovic2012-09-241-3/+3
|
* change from device->machine() to space.machine() in device handlers in order ↵ Miodrag Milanovic2012-09-211-24/+24
| | | | to make next changes easier (no whatsnew)
* Since nobody checks for NULLs anyway, make Aaron Giles2012-09-191-6/+6
| | | | | | | | | | | | 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-6/+6
| | | | | | | 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-13/+12
| | | | changed to be members of state classes (no whatsnew)
* In device_state_interface, rename state() to state_int() Aaron Giles2012-09-111-12/+12
| | | | | | | | | | | | | | | 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/+372