summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/pv2000.c
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-428/+0
|
* 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.
* Updated license info on Wilberts request (nw) Miodrag Milanovic2015-05-081-1/+1
|
* Added owners and licenses for those who can be tracked (nw) Miodrag Milanovic2015-05-081-1/+1
|
* Added dummy license lines to each file for MESS (nw) Miodrag Milanovic2015-05-071-0/+2
|
* Cleanups and version bumpmame0155 Miodrag Milanovic2014-10-151-5/+5
|
* (MESS) consolidated generic socket / cartslot a bit more: removed Fabio Priuli2014-09-221-3/+3
| | | | | | redundant cart_mounted() function since exists() from image device already provides the required service, and added capability to specify endianness of the rom region (otherwise not detectable from fullpath). nw.
* (MESS) unified some functions for generic socket / cart and Fabio Priuli2014-09-181-13/+2
| | | | converted a few more drivers to use the new code instead of old cartslot. nw.
* added generic cartslot / ROM socket slot device, which offers Fabio Priuli2014-09-171-48/+46
| | | | | | | | | | | basic allocation and access handlers, and converted a few drivers to use this instead of code from cartslot.c [Fabio Priuli] out of whatsnew: the RAM socket part is just a proof of concept, and the natural extension of the line of thought which lead me to this generic socket/cartslot. it might allow to convert current RAM device to be a slot device as well (after some refactorization, of course, since current code lacks many of the necessary features), or be removed soonish, depending on consensus.
* cassette config moved inline (nw) Miodrag Milanovic2014-05-021-10/+2
|
* Cleanup of image device interfaces (nw) Miodrag Milanovic2014-05-021-1/+0
|
* tms9928a_device: converted to devcb2 (nw) Ivan Vangelista2014-04-171-8/+3
|
* Converted SN76496 ready to DEVCB2 [smf] smf-2014-02-111-18/+2
|
* 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
* (MESS) cassette cleanup (nw) Miodrag Milanovic2013-04-171-3/+3
|
* 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-4/+4
|
* Started moving DEVICE_IMAGE_ functions into driver_device classes. (nw) Wilbert Pol2013-02-051-2/+3
|
* output of new srcclean changes that are relatively small [smf] smf-2013-01-111-1/+0
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-14/+14
|
* (MESS) pv2000 : 7 key had wrong shifted port code Robbbert2012-12-261-1/+1
|
* (MESS) PV2000 : added some portcode definitions Robbbert2012-12-261-55/+55
|
* Removed _new from name of modern device (no whatsnew) Miodrag Milanovic2012-10-021-2/+2
|
* Clean-ups and version bumpmame0147 Miodrag Milanovic2012-09-171-2/+2
| | | note: hoarded dump removed too from coco_cart.xml, this will not be tolerated
* Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT ↵ Miodrag Milanovic2012-09-131-10/+9
| | | | changed to be members of state classes (no whatsnew)
* Clear out remaining global inlines in diexec.h. Aaron Giles2012-09-121-1/+1
|
* Closeout on old macros. Retired cputag_set_input_line Aaron Giles2012-09-121-3/+3
| | | | | | | and cputag_set_input_line_and_vector, replacing them with machine.device("tag")->execute().set_input_line[_and_vector]. [Aaron Giles]
* (MESS) Continuing new device implementation for SN76496 and clones - ↵ Scott Stone2012-08-291-2/+21
| | | | apricot.c, apricotp.c, coleco.c, m5.c, mz700.c, pc.c, pv2000.c, rx78.c, sms.c, tutor.c [Osso]
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+452