summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/lisa.c
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-1927/+0
|
* Licenses for Raphael Nabet (nw) Miodrag Milanovic2015-06-071-1/+1
|
* Synced other dirs withs driver license for MESS (nw) Miodrag Milanovic2015-05-131-1/+1
|
* Added dummy license lines to each file for MESS (nw) Miodrag Milanovic2015-05-071-0/+2
|
* Fix various typos and spelling mistakes Zoë Blade2015-04-111-3/+3
| | | | | | | | | | | | | | I'm purposefully leaving /src/emu/bus/cbmiec/c1541.c's kernal.bin as it is, as this particular spelling mistake was originally made by Robert Russell, therefore is canon. See http://en.wikipedia.org/wiki/KERNAL for details. I'm also leaving /src/emu/machine/nscsi_bus.c's RECIEVE as I don't want to break anything, but it's worth someone looking into. I renamed some variables in /src/mame/drivers/sfbonus.c, /src/mame/video/tia.c and /src/mame/video/tia.h, so if anyone wants to verify I didn't break anything, that would be nice.
* (MESS) modernized nvram for clcd.c, lisa.c and nc.c. nw. Fabio Priuli2014-04-031-38/+29
|
* 8530scc: devcb2. (nw) Curt Coder2014-03-171-4/+0
|
* primary_screen -> first_screen() (nw) Miodrag Milanovic2014-03-151-2/+2
|
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-1/+1
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* (nw) R. Belmont2014-02-211-2/+3
|
* removed the simplest 6522 port callbacks [smf] smf-2014-01-021-30/+17
|
* converted pa* & pb* inputs to WRITE_LINE_MEMBER [smf] smf-2014-01-011-3/+10
|
* Convert VIA6522 to use DEVCB2 [smf] smf-2013-12-311-30/+7
|
* modernized speaker device. [Fabio Priuli] Fabio Priuli2013-06-041-1/+1
|
* moving some static functions in driver state for MESS drivers plus some ↵ Miodrag Milanovic2013-04-181-2/+1
| | | | other modernization (nw)
* various cpu lookup cleanup (nw) Miodrag Milanovic2013-04-151-1/+1
|
* Cleanups and version bumpmame0148u1 Miodrag Milanovic2013-02-111-1/+1
|
* (MESS) lisa: Removed runtime tagmap lookups. (nw) Curt Coder2013-01-261-218/+182
|
* output of new srcclean changes that are relatively small [smf] smf-2013-01-111-3/+0
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-156/+155
|
* Better devicification of the Apple II FDC/IWM/SWIM Nathan Woods2012-12-241-6/+6
|
* Replace some *_DEVICE_HANDLER with _MEMBER calls in MESS section (no whatsnew) Miodrag Milanovic2012-10-031-37/+25
|
* modernization or timer callbacks part 2 (no whatsnew) Miodrag Milanovic2012-09-241-72/+69
|
* change from device->machine() to space.machine() in device handlers in order ↵ Miodrag Milanovic2012-09-211-10/+10
| | | | to make next changes easier (no whatsnew)
* Since nobody checks for NULLs anyway, make Aaron Giles2012-09-191-3/+3
| | | | | | | | | | | | 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-38/+37
|
* changed most of screen.machine() to machine() (no whatsnew) Miodrag Milanovic2012-09-181-1/+1
|
* Modernized screen update calls (no whatsnew) Miodrag Milanovic2012-09-171-5/+4
|
* 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]
* Memory handler normalization, part 1. Aaron Giles2012-09-171-11/+10
| | | | | | | | | | | | | 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-28/+26
| | | | changed to be members of state classes (no whatsnew)
* Get rid of devtag_reset macro. Aaron Giles2012-09-121-1/+1
|
* Clear out remaining global inlines in diexec.h. Aaron Giles2012-09-121-1/+1
|
* 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]
* 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-7/+7
| | | | | | Convert all cpu_get_pc() to safe_pc() and cpu_getpreviouspc() to safe_basepc(). Removed the old macros.
* fixed some warnings about unreachable statements reported by cppcheck (no ↵ Oliver Stöneberg2012-09-081-3/+3
| | | | whatsnew)
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+2027