summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/ace.c
Commit message (Collapse)AuthorAgeFilesLines
* rename of driver files to make names unique (nw) Miodrag Milanovic2015-09-301-835/+0
|
* ace.c: Reduce tagmap lookups and minor cleanup (nw) Wilbert Pol2015-08-111-25/+105
|
* more pedantic fixes (NW) Cowering2015-07-081-2/+2
|
* cleanup, was rewrite (nw) Miodrag Milanovic2015-05-241-1/+1
|
* Updated MESS info for licenses (nw) Miodrag Milanovic2015-05-131-1/+1
|
* Added known authors to licenses tags (nw) Miodrag Milanovic2015-05-091-1/+1
|
* (MESS) softlist: Added new lists for Colour Genie, DAI Personal Computer and ↵ etabeta782014-11-071-0/+3
| | | | | | | | | Jupiter Ace cassettes. [Riley110] (MESS) compclr2_flop: Added a few additional images. [Riley110] out of whatsnew: I took the chance to improve software descriptions in compclr2_flop, but there is still a lot of space for improvements :)
* Use the same list of centronics devices everywhere (except the Amstrad CPC), ↵ smf-2014-10-281-1/+1
| | | | the list has been renamed as they aren't all printers. [smf]
* Cleanups and version bump Miodrag Milanovic2014-07-221-1/+1
|
* ay8910_device and extended family: converted to devcb2 (nw) Ivan Vangelista2014-05-061-16/+0
| | | This is easily the commit I ever did that touches the most drivers. I payed extra attention while doing it, stared at the diff really hard to find any errors and did some testing. Obviously I can't test every single game / system, so please report any regression you might find.
* cassette config moved inline (nw) Miodrag Milanovic2014-05-021-14/+4
|
* Cleanup of image device interfaces (nw) Miodrag Milanovic2014-05-021-1/+0
|
* z80pio: converted to use devcb2. nw. Fabio Priuli2014-04-291-16/+7
|
* converted i8255 to devcb2. nw. Fabio Priuli2014-04-171-13/+6
| | | | | p.s. I tested several games/systems and I triple checked the diff to be sure I did not make any copy and paste mistake in the 195 files touched by this, but let me know if any system suddenly stops working!
* Added serial printer, renamed centronics printer to match. Standardised the ↵ smf-2014-04-161-1/+1
| | | | configuration of rs232 devices. All serial devices are now connected using an rs232 port. [smf]
* Cleanups and version bumpmame0153 Miodrag Milanovic2014-04-071-1/+1
|
* Checkpoint 2: Alex W. Jackson2014-03-151-1/+1
| | | | | | gfxdecode devices must now be assigned a palette in MCFG. Added palette devices to several MESS drivers and devices to comply with this requirement. This palette is assigned as a default to the gfx_elements created by the device (but still not used for drawing yet, except in the UI graphics viewer) Tilemaps now have a pointer to a palette device and use that palette for rgb32 drawing, rather than the palette of the screen or bitmap they are drawing to (since rgb32 screens don't have palettes now). When a tilemap is created, it takes its palette from the gfxdecode device it was created with, but you can change a tilemap's palette device with set_palette() at any time (doing this does not mark the tilemap dirty, since all tilemaps use indexed bitmaps internally)
* Made palette settings for screen explicit and mandatory for ind16 mode (nw) Miodrag Milanovic2014-03-141-0/+2
|
* Converted sp0256_device to devcb2 (nw) Ivan Vangelista2014-03-131-12/+0
|
* 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