summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/apc.c
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-1000/+0
|
* apc: use standard 3-bit brg palette Dirk Best2015-07-291-14/+2
|
* change flags from GAME_ to MACHINE_ David Haywood2015-07-291-1/+1
| | | | this better fits the drivers from MESS (which have always illogically used the GAME_ flags despite not being games) and also fits fine with arcade machines.
* GPL - > LGPL for Kale (nw) Miodrag Milanovic2015-05-131-1/+1
|
* part of license work for Kale, mostly those that needs to be GPL (nw) Miodrag Milanovic2015-05-121-1/+1
|
* Added known authors to licenses tags (nw) Miodrag Milanovic2015-05-091-1/+1
|
* upd7220: reverse bit order and make address space 16 bit (nw) cracyc2014-12-101-7/+7
| | | | (mess) pc9801: egc wip (nw)
* upd7220: slanted chars [Carl] cracyc2014-10-241-1/+1
|
* Assorted set name corrections (duplicates) and macro changes to match up to ↵ Scott Stone2014-06-161-1/+1
| | | | actual use. Cleared redundant GAME( entries in galaxian.c and left notes in drivers that will eventually be merged. (nw)
* am9517a_device: converted to devcb2 (nw) Ivan Vangelista2014-04-291-11/+11
|
* pic8259: remove trampolines (nw) cracyc2014-04-231-17/+2
|
* Replaced set_irq_acknowledge_callback with proper ↵ Miodrag Milanovic2014-04-231-2/+1
| | | | MCFG_CPU_IRQ_ACKNOWLEDGE_DRIVER/DEVICE (nw)
* Cleanups and version bumpmame0153 Miodrag Milanovic2014-04-071-5/+5
|
* upd7220: devcb2 and delegates. (nw) Curt Coder2014-04-021-37/+24
|
* upd765: Refactored to use devcb2 callbacks. [Curt Coder] Curt Coder2014-03-171-19/+2
|
* primary_screen -> first_screen() (nw) Miodrag Milanovic2014-03-151-3/+3
|
* Fixed all bitmap.palette() users to use m_palette instead (nw) Miodrag Milanovic2014-03-151-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)
* Updated upd1771.c to use devcb2 (nw) Ivan Vangelista2014-03-111-3/+0
|
* Moved optional_device<screen_device> m_screen and ↵ Miodrag Milanovic2014-03-051-1/+4
| | | | optional_device<palette_device> m_palette out of driver.* (nw)
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-11/+6
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* Converted PIT8253 to DEVCB2 [smf] smf-2014-02-231-19/+6
|
* Converted palette_t and palette_client to classes. General palette.c Aaron Giles2014-02-181-1/+1
| | | | cleanup.
* 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.
* Copyright update. Please let me know if there's a blank and you would like ↵ Angelo Salese2013-10-151-0/+2
| | | | to fill it somehow, not going to force it for now. I've surely missed some drivers, but for now that's enough.
* Created new device_video_interface. Right now its sole purpose is to Aaron Giles2013-07-241-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | house a screen tag and to find the screen at startup, providing an m_screen object that can be used. One nice feature is that if there is only one screen and no screen has been specified, it will auto configure to that screen. This removes the need to explicitly specify a screen in the configuration for a large chunk of drivers (though doing so never hurts). A new macro MCFG_VIDEO_SET_SCREEN is provided, though devices are encouraged to define their own that maps there so it is obvious which device is being targeted. The device_video_interface's validation function will error if an invalid screen is specified or if no screen is provided but there are multiple screens present. Updated all devices that currently had an m_screen in them to use the device_video_interface instead. This also has the nice benefit of flagging video-related devices for categorization purposes. It also means all these devices inherit the same screen-finding behaviors. For devices that had interfaces that specified a screen tag, those have been removed and all existing structs updated. Added an optional_device<screen_device> m_screen to the base driver_device. If you name your screen "screen" (as most drivers do), you will have free access to your screen this way. Future updates include: * Updating all devices referencing machine.primary_screen to use the device_video_interface instead * Updating all drivers referencing machine.primary_screen to use the m_screen instead * Removing machine.primary_screen entirely
* upd1990a: devcb2. (nw) Curt Coder2013-06-101-7/+1
|
* Modernized the PIT8253 device. [Fabio Priuli] Fabio Priuli2013-06-031-5/+7
|
* (MESS) Modernized uPD1771c sound device. [Fabio Priuli] Fabio Priuli2013-06-031-1/+1
| | | src/mess/audio/ is now legacy free, if I'm not making mistakes...
* Moved default card config, device inputs and clock off the slot interface so ↵ smf-2013-05-291-2/+2
| | | | they can be specified for all cards [smf]
* pic8259.c: Switched to devcb2. (nw) Wilbert Pol2013-05-151-16/+2
|
* pic8259.c: Continue modernization. (nw) Wilbert Pol2013-05-141-11/+11
|
* Removal of machine().root_device() where appropriate (nw) Miodrag Milanovic2013-04-141-1/+1
|
* changed machine().device("maincpu") with m_maincpu in mess tree part (nw) Miodrag Milanovic2013-04-101-2/+2
|
* Some mess modernization (nw) Miodrag Milanovic2013-02-181-7/+7
|
* Cleanups and version bumpmame0148u1 Miodrag Milanovic2013-02-111-7/+7
|
* Notes for APC Angelo Salese2013-02-111-22/+31
|
* IRQ_CALLBACK modernization part 1 (no whatsnew) Miodrag Milanovic2013-01-311-3/+5
|
* output of new srcclean changes that are relatively small [smf] smf-2013-01-111-1/+0
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-17/+17
|
* Cleanups and version bumpmame0147u4 Miodrag Milanovic2012-12-171-86/+86
|
* upd7220: tied pixel clock with the refresh rate, updated all drivers to use ↵ Angelo Salese2012-12-121-2/+2
| | | | it [Angelo Salese]
* Removed unnecessary parameters from upd7220 Angelo Salese2012-12-121-1/+1
|
* (MESS) Removed unnecessary includes, and fixed a floppy bug. (nw) Curt Coder2012-12-091-4/+0
|
* upd7220: Refactored to use bitmap_rgb32. (nw) Curt Coder2012-12-071-3/+4
| | | i8275: Refactored to use bitmap_rgb32. (nw)
* (MESS) added software list for NEC APC [kaylee] Angelo Salese2012-11-241-0/+1
| | | (MESS) added PCB readme for FM Towns Marty [Guru]
* apc.c: fixed compile on Mac. and yes, Apple gcc is so dumb with switch ↵ Fabio Priuli2012-11-241-1/+1
| | | | cases... no whatsnew.
* (MESS) Fixed upd765 SIS status when fid = 4, this makes NEC PC-88VA to ↵ Angelo Salese2012-11-221-2/+0
| | | | attempt to DMA from floppy. [Angelo Salese]
* Fixed FDC irq, needed by MS-DOS Angelo Salese2012-11-211-9/+11
|
* (MESS) APC: Fixed a few missing keys (a few are still missing though), Jonathan Gevaryahu2012-11-211-19/+49
| | | | | | | | and hooked the rtc clock, command and strobe lines up in a plausible configuration. The status line clock now works though shows an invalid value for year (the upd1990a didn't have a year response, so perhaps whatever rtc is being used here is a later variant which does store a year). The "date set" command doesn't work properly and doesn't even seem to poke the rtc at all. Needs further investigation. [Lord Nightmare]