summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/ace.c
Commit message (Collapse)AuthorAgeFilesLines
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-2/+1
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* Created gfxdecode_device instead of using machine fixed gfxdecode [Miodrag ↵ Miodrag Milanovic2014-02-161-1/+1
| | | | | | | | | | Milanovic] Updated all devices and drivers for using it. out of whatsnew: Note that it is made to work same as before, in some cases it can be more logic to move gfxdevice into subdevice itself then to keep it in main driver.
* Centronics WIP using write lines and DEVCB2. Added an output latch and input ↵ smf-2014-02-091-3/+5
| | | | buffer device to allow configuration in MCFG. Renamed centronics device "printer" to "image". FM-7 parallel port joystick works again. Added support for using PC LPT control lines as inputs (not tested). c64 geocable now just passes individual lines through, changed the strobe line to what is documented online (not tested). Converted MSX & exidy sorcerer parallel port DAC to use covox device instead of using a configuration switch (not tested). Sorcerer parallel port is more like the commodore user port, so should be converted to it's own slot where one option is a centronics card. [smf]
* moved centronics into emu/bus (nw) Miodrag Milanovic2013-10-231-1/+1
|
* (MESS) Added copyright info - feel free to update as needed Robbbert2013-10-161-0/+2
|
* some SCREEN_UPDATE_* cleanups (nw) Oliver Stöneberg2013-08-051-4/+0
|
* modernized generic palette initializations (nw) Oliver Stöneberg2013-07-151-1/+1
|
* modernized speaker device. [Fabio Priuli] Fabio Priuli2013-06-041-2/+2
|
* (MESS) sp0256: modernized the SP0256 Narrator Speech Processor sound device. ↵ Fabio Priuli2013-05-261-4/+2
| | | | [Fabio Priuli]
* modernised the AY8910 [smf] smf-2013-05-121-2/+2
|
* made BEEP and RAM devices initialize in constructor of driver classes (nw) Miodrag Milanovic2013-04-231-1/+1
|
* cleanup (nw) Miodrag Milanovic2013-04-191-1/+1
|
* SNAPSHOT_LOAD and QUICKLOAD_LOAD made members, still need to cleanup (nw) Miodrag Milanovic2013-04-191-4/+4
|
* (MESS) cassette cleanup (nw) Miodrag Milanovic2013-04-171-2/+2
|
* various cpu lookup cleanup (nw) Miodrag Milanovic2013-04-151-2/+2
|
* speaker tag lookup removal, also no need to use universal tag, since easier ↵ Miodrag Milanovic2013-04-121-1/+1
| | | | now to follow (nw)
* Some more moving to proper place and compile fix (nw) Miodrag Milanovic2013-02-221-1/+101
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-75/+75
|
* Replace some *_DEVICE_HANDLER with _MEMBER calls in MESS section (no whatsnew) Miodrag Milanovic2012-10-031-16/+26
|
* Some manual cleanup (no whatsnew) Miodrag Milanovic2012-09-251-2/+2
|
* TIMER_CALLBACK_DEVICE_MEMBER modernization part 1 (no whatsnew) Miodrag Milanovic2012-09-251-6/+6
|
* Since nobody checks for NULLs anyway, make Aaron Giles2012-09-191-4/+4
| | | | | | | | | | | | 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 1. Aaron Giles2012-09-171-1/+1
| | | | | | | | | | | | | 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]
* Closeout on old macros. Retired cputag_set_input_line Aaron Giles2012-09-121-2/+2
| | | | | | | 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-1/+1
| | | | | | | device_execute/memory_interfaces respectively in order to catch unnecessary usage of the corresponding device_t methods. Removed all existing redundant usage. [Aaron Giles]
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+698