summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/cortex.c
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* did change on Robbberts behalf (nw) Miodrag Milanovic2015-05-071-1/+1
|
* tms9928a_device: converted to devcb2 (nw) Ivan Vangelista2014-04-171-7/+2
|
* (MESS) TMS99xx users adapted to use devcb2. (nw) Michael Zapf2014-03-211-12/+3
|
* removing some unused legacy things (nw) Wilbert Pol2014-02-261-27/+2
|
* Added compile switch for legacy / new CPU implementation.(nw) Michael Zapf2013-11-031-0/+26
|
* (MESS) Switch to modern TMS9995 implementation. [Michael Zapf] Michael Zapf2013-10-211-10/+11
|
* (MESS) Added copyright info - feel free to update as needed Robbbert2013-10-161-0/+2
|
* Last one for tonight Robbbert2013-07-301-1/+1
|
* Created new device_video_interface. Right now its sole purpose is to Aaron Giles2013-07-241-1/+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
* Cleanups and version bumpmame0149 Miodrag Milanovic2013-06-111-1/+1
|
* (MESS) Cortex: added notes Robbbert2013-06-021-7/+19
|
* (MESS) Cortex: added video chip. Robbbert2013-06-011-25/+23
|
* changed machine().device("maincpu") with m_maincpu in mess tree part (nw) Miodrag Milanovic2013-04-101-1/+3
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-3/+3
|
* Modernized screen update calls (no whatsnew) Miodrag Milanovic2012-09-171-2/+3
|
* Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT ↵ Miodrag Milanovic2012-09-131-4/+4
| | | | changed to be members of state classes (no whatsnew)
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+105