Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | (MESS) Remove now-fixed TODO (nw) | 2014-05-04 | 1 | -3/+0 | |
| | |||||
* | (MESS) Apple II: Correct setup of built-in ACIAs for IIc/IIc Plus [R. Belmont] | 2014-04-13 | 1 | -2/+48 | |
| | |||||
* | (MESS) Apple II updates: [R. Belmont] | 2014-04-13 | 1 | -21/+23 | |
| | | | | | | - Some minor cleanup to how post-IIe machines are handled - Fixed N/M keys on Platinum IIe and IIgs | ||||
* | Cleanups and version bumpmame0153 | 2014-04-07 | 1 | -10/+10 | |
| | |||||
* | primary_screen -> first_screen() (nw) | 2014-03-15 | 1 | -2/+2 | |
| | |||||
* | fix Clang (nw) | 2014-02-12 | 1 | -1/+0 | |
| | |||||
* | (MESS) apple2: rewrote keyboard handling according to schematics and using ↵ | 2014-02-12 | 1 | -11/+127 | |
| | | | | | | | the generic AY-3600. [R. Belmont] nw: next up, devcb2 the generic 3600. | ||||
* | (MESS) Apple drivers cleanup: [R. Belmont] | 2014-02-09 | 1 | -19/+34 | |
| | | | | | | | - apple3_state is no longer an unnecessary subclass of apple2_state - ay3600 keyboard decoder is now independent from apple2_state - cleaned up some includes | ||||
* | missed an outdated include (nw) | 2013-10-22 | 1 | -1/+0 | |
| | |||||
* | (MESS) Apple II bus moving day (nw) | 2013-10-22 | 1 | -0/+20 | |
| | |||||
* | modernized speaker device. [Fabio Priuli] | 2013-06-04 | 1 | -2/+2 | |
| | |||||
* | Just some MESS drivers nobody cares about (nw) | 2013-05-30 | 1 | -2/+2 | |
| | |||||
* | made BEEP and RAM devices initialize in constructor of driver classes (nw) | 2013-04-23 | 1 | -2/+2 | |
| | |||||
* | moving some static functions in driver state for MESS drivers plus some ↵ | 2013-04-18 | 1 | -94/+88 | |
| | | | | other modernization (nw) | ||||
* | (MESS) cassette cleanup (nw) | 2013-04-17 | 1 | -9/+2 | |
| | |||||
* | ficed several occurances of uninitialized memory (nw) | 2013-03-09 | 1 | -2/+6 | |
| | |||||
* | Moved some mess devices to proper place (nw) | 2013-02-22 | 1 | -2/+2 | |
| | |||||
* | Cleanups and version bumpmame0148u1 | 2013-02-11 | 1 | -2/+2 | |
| | |||||
* | apple2gs: Enable AE Vulcan IDE card (nw, will self-serve) | 2013-02-10 | 1 | -2/+2 | |
| | |||||
* | (MESS) Apple II: Another pass on tagmaps, plus preliminary emulation of the ↵ | 2013-02-08 | 1 | -86/+450 | |
| | | | | standard and extended 80-column cards for the IIe [R. Belmont] | ||||
* | misc fixes. Hint: read_safe can't work anymore (nw) | 2013-02-07 | 1 | -2/+2 | |
| | |||||
* | (MESS) Apple II: General modernization, some tagmap cleanup, and prep work ↵ | 2013-02-06 | 1 | -81/+119 | |
| | | | | to emulate IIe aux slot cards. [R. Belmont] | ||||
* | machine_notify_delegate modernization (nw) | 2013-02-04 | 1 | -34/+17 | |
| | |||||
* | modernized some pre/postload calls (no whatsnew) | 2013-01-31 | 1 | -3/+3 | |
| | |||||
* | (MESS) De-tagged the Apple II series drivers [R. Belmont] | 2013-01-28 | 1 | -10/+10 | |
| | |||||
* | Cleanups and version bumpmame0148 | 2013-01-11 | 1 | -250/+250 | |
| | |||||
* | [APPLE2] Floppy drive cleanups/modernization (nw) | 2012-12-23 | 1 | -2/+1 | |
| | |||||
* | TIMER_CALLBACK_DEVICE_MEMBER modernization part 1 (no whatsnew) | 2012-09-25 | 1 | -2/+2 | |
| | |||||
* | Since nobody checks for NULLs anyway, make | 2012-09-19 | 1 | -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 | 2012-09-17 | 1 | -8/+8 | |
| | | | | | | | 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 ↵ | 2012-09-13 | 1 | -37/+32 | |
| | | | | changed to be members of state classes (no whatsnew) | ||||
* | In device_state_interface, rename state() to state_int() | 2012-09-11 | 1 | -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] | ||||
* | Don't use safe_pc[base] when you already have a | 2012-09-11 | 1 | -2/+2 | |
| | | | | | | resolved device_state_interface. Added redundant methods to device_state_interface to generate errors when this is done. | ||||
* | Add safe_pc() and safe_pcbase() methods to device_t. | 2012-09-11 | 1 | -2/+2 | |
| | | | | | | Convert all cpu_get_pc() to safe_pc() and cpu_getpreviouspc() to safe_basepc(). Removed the old macros. | ||||
* | Merge of MESS sources (no whatsnew) | 2012-08-21 | 1 | -0/+1952 | |