summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/vii.c
Commit message (Collapse)AuthorAgeFilesLines
* modernization or timer callbacks part 3 - final (no whatsnew) Miodrag Milanovic2012-09-241-8/+8
|
* Since nobody checks for NULLs anyway, make Aaron Giles2012-09-191-7/+7
| | | | | | | | | | | | 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.
* INTERRUPT_GEN -> INTERRUPT_GEN_MEMBER for MESS part (no whatsnew) Miodrag Milanovic2012-09-181-41/+41
|
* changed most of screen.machine() to machine() (no whatsnew) Miodrag Milanovic2012-09-181-3/+3
|
* Modernized screen update calls (no whatsnew) Miodrag Milanovic2012-09-171-9/+9
|
* Memory handler normalization, part 2. Change legacy Aaron Giles2012-09-171-11/+11
| | | | | | | 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-28/+21
| | | | changed to be members of state classes (no whatsnew)
* Closeout on old macros. Retired cputag_set_input_line Aaron Giles2012-09-121-11/+11
| | | | | | | and cputag_set_input_line_and_vector, replacing them with machine.device("tag")->execute().set_input_line[_and_vector]. [Aaron Giles]
* Add ambiguous execute() and memory() methods to the Aaron Giles2012-09-111-2/+2
| | | | | | | device_execute/memory_interfaces respectively in order to catch unnecessary usage of the corresponding device_t methods. Removed all existing redundant usage. [Aaron Giles]
* In device_state_interface, rename state() to state_int() Aaron Giles2012-09-111-3/+3
| | | | | | | | | | | | | | | 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-1/+1
| | | | | | Convert all cpu_get_pc() to safe_pc() and cpu_getpreviouspc() to safe_basepc(). Removed the old macros.
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+1223