summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/palm.c
Commit message (Collapse)AuthorAgeFilesLines
* Replaced all device_t's with actual device classes. Regression test ↵ Curt Coder2012-11-261-1/+1
| | | | recommended. (nw)
* Replace some *_DEVICE_HANDLER with _MEMBER calls (no whatsnew) Miodrag Milanovic2012-09-261-22/+23
|
* change from device->machine() to space.machine() in device handlers in order ↵ Miodrag Milanovic2012-09-211-5/+5
| | | | to make next changes easier (no whatsnew)
* 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.
* Modernized INPUT_CHANGED in MESS part of tree (no whatsnew) Miodrag Milanovic2012-09-191-17/+17
|
* 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-26/+26
| | | | | | | | | | | | | 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]
* Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT ↵ Miodrag Milanovic2012-09-131-18/+16
| | | | changed to be members of state classes (no whatsnew)
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+511