summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/svi318.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-540/+0
|
* change flags from GAME_ to MACHINE_ David Haywood2015-07-291-6/+6
| | | | 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.
* get rid of all the x Dirk Best2015-06-231-2/+2
|
* svi318: updated to use the new wd fdc. floppy support has been restored, Dirk Best2015-06-031-22/+23
| | | | which was broken for a long time.
* We cannot relicense files for which we have not yet received responses (nw) balr0g2015-05-281-1/+1
|
* update licenses for : Tony La Porta, Sean Young, Mathis Rosenhauer, Paul ↵ Miodrag Milanovic2015-05-151-1/+1
| | | | Priest, Tim Schuerewegen and Mark McDougall (nw)
* 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
|
* enabled a few C64 cart types from fullpath (.crt format), sync castool etabeta782014-11-031-1/+1
| | | | | with the supported tape formats + fixed misc typos and c'n'p mistakes reported by Riley110. nw.
* Use the same list of centronics devices everywhere (except the Amstrad CPC), ↵ smf-2014-10-281-2/+2
| | | | the list has been renamed as they aren't all printers. [smf]
* (MESS) consolidated generic socket / cartslot a bit more: removed Fabio Priuli2014-09-221-1/+1
| | | | | | 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) svi318.c: cleaned up the driver and added support for save states. ↵ Fabio Priuli2014-09-221-20/+11
| | | | [Fabio Priuli]
* first round of svi318.c cleanup (with some tagmap reduction too). nw. Fabio Priuli2014-09-211-93/+93
|
* more generic slots + some cleanups & some tagmap reductions. nw. Fabio Priuli2014-09-201-30/+3
|
* Cleanups and version bump Miodrag Milanovic2014-07-221-1/+1
|
* converted micropolis and wd17xx to use inline configs. nw. Fabio Priuli2014-05-161-2/+4
|
* Fixed assorted wd17xx related regressions (nw) Ivan Vangelista2014-05-141-0/+2
|
* wd17xx: Cleanup. (nw) Curt Coder2014-05-121-2/+2
|
* wd17xx: devcb2. (nw) Curt Coder2014-05-121-0/+2
|
* ins8250_device: converted to devcb2 (nw) Ivan Vangelista2014-05-071-4/+8
|
* ay8910_device and extended family: converted to devcb2 (nw) Ivan Vangelista2014-05-061-12/+4
| | | 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-10/+8
|
* Cleanup of image device interfaces (nw) Miodrag Milanovic2014-05-021-9/+2
|
* mc6845: converted to devcb2, delegates and inline configs. nw. Fabio Priuli2014-05-011-16/+4
| | | | | | | | | while at it, cleaned up the args of the mc6845 delegates as well (no need to pass back and forth pieces of the driver class, now that delegates belong to it as well) even if I tested the changes extensively, I might have missed something among the 177 source files using this, so please report any regressions you see :)
* tms9928a_device: converted to devcb2 (nw) Ivan Vangelista2014-04-171-9/+9
|
* converted i8255 to devcb2. nw. Fabio Priuli2014-04-171-2/+8
| | | | | 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-2/+2
| | | | configuration of rs232 devices. All serial devices are now connected using an rs232 port. [smf]
* 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)
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-1/+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-2/+8
| | | | 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]
* added screen visarea adjustment to mc6845 config interface Michaël Banaan Ananas2014-01-041-0/+1
|
* moved centronics into emu/bus (nw) Miodrag Milanovic2013-10-231-1/+1
|
* Created new device_video_interface. Right now its sole purpose is to Aaron Giles2013-07-241-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* modernised the AY8910 [smf] smf-2013-05-121-6/+6
|
* (MESS) cassette cleanup (nw) Miodrag Milanovic2013-04-171-4/+4
|
* Getting rid of DEVICE_IMAGE_START (nw) Wilbert Pol2013-02-061-1/+0
|
* Started moving DEVICE_IMAGE_ functions into driver_device classes. (nw) Wilbert Pol2013-02-051-3/+3
|
* (MESS) svi318.c: Cleanups (nw) Wilbert Pol2013-01-241-1/+1
|
* Added a preliminary boolean flag to MC6845 interface structure: "show border ↵ Angelo Salese2013-01-141-1/+3
| | | | | | | | area". If true, it will show the whole video area including border + blanking areas. [Angelo Salese] Bulk replaced const mc6845_interface -> MC6845_INTERFACE, nw (MESS) SMC-777: enabled to show the border area in MC6845 interface, changed various video related function accordingly [Angelo Salese]
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-97/+97
|
* Replace some *_DEVICE_HANDLER with _MEMBER calls in MESS section (no whatsnew) Miodrag Milanovic2012-10-031-3/+3
|
* Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT ↵ Miodrag Milanovic2012-09-131-8/+8
| | | | changed to be members of state classes (no whatsnew)
* Closeout on old macros. Retired cputag_set_input_line Aaron Giles2012-09-121-1/+1
| | | | | | | and cputag_set_input_line_and_vector, replacing them with machine.device("tag")->execute().set_input_line[_and_vector]. [Aaron Giles]
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+579