summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/dmv.c
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-850/+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.
* upd7220: reverse bit order and make address space 16 bit (nw) cracyc2014-12-101-14/+14
| | | | (mess) pc9801: egc wip (nw)
* (MESS) dmv: added dipswitches to K235 for configure INT5 and INT7 source. (nw) Sandro Ronco2014-11-251-12/+20
|
* (MESS) dmv: add support for K210 and K801 modules. (nw) Sandro Ronco2014-11-221-0/+61
|
* (MESS) dmv: added preliminary K803 emulation. (nw) Sandro Ronco2014-11-021-6/+38
| | | | (MESS) dmv.xml: added more disks. (nw)
* upd7220: slanted chars [Carl] cracyc2014-10-241-1/+1
|
* (MESS) dmv: added floppy softlist. [Sandro Ronco] Sandro Ronco2014-10-101-0/+2
| | | | (MESS) floppy: added read-only support for CopyQM images. (nw)
* Support for mode 0 chars in upd7220 (text in DMV diag program) Angelo Salese2014-09-271-1/+1
|
* (MESS) dmv: added K233 and K234 expansion modules. (nw) Sandro Ronco2014-09-211-5/+48
|
* (MESS) dmv: fixed memory module bankswitch in DOS. (nw) Sandro Ronco2014-08-201-7/+28
|
* (MESS) dmv: added expansions slot interface. [rfka01, Sandro Ronco] Sandro Ronco2014-08-151-48/+310
| | | | (MESS) dmv: added boot ROMs from 4 different boards. [rfka01]
* (MESS) dmv: various updates to allow CP/M to boot. [Sandro Ronco] Sandro Ronco2014-07-031-54/+136
|
* am9517a_device: converted to devcb2 (nw) Ivan Vangelista2014-04-291-13/+7
|
* upd7220: devcb2 and delegates. (nw) Curt Coder2014-04-021-18/+14
|
* upd765: Refactored to use devcb2 callbacks. [Curt Coder] Curt Coder2014-03-171-17/+2
|
* primary_screen -> first_screen() (nw) Miodrag Milanovic2014-03-151-1/+1
|
* Fixed all bitmap.palette() users to use m_palette instead (nw) Miodrag Milanovic2014-03-151-2/+4
|
* 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-2/+1
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* 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.
* License tags. (nw) Sandro Ronco2013-10-261-0/+2
|
* mcs48.c: Modernized cpu core (nw) Wilbert Pol2013-08-231-2/+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
* modernized generic palette initializations (nw) Oliver Stöneberg2013-07-151-1/+1
|
* 8237dma: convert its remaining users and kill it (nw) cracyc2013-05-301-5/+5
| | | | -- The apollo and bebox both boot but might need more thorough testing.
* 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]
* Cleanups and version bumpmame0148u4 Miodrag Milanovic2013-04-301-1/+1
|
* removed implementation of legacy DEVCB_MEMORY_HANDLER and used members ↵ Miodrag Milanovic2013-04-241-4/+15
| | | | | instead (nw) this require clean compile
* removed devhelpr.h and trampolines in half modern devices,also southbridge ↵ Miodrag Milanovic2013-03-201-2/+2
| | | | also use am9517a device now (no whatsnew)
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-57/+56
|
* upd7220: tied pixel clock with the refresh rate, updated all drivers to use ↵ Angelo Salese2012-12-121-1/+1
| | | | it [Angelo Salese]
* Removed unnecessary parameters from upd7220 Angelo Salese2012-12-121-3/+3
|
* (MESS) Removed unnecessary includes, and fixed a floppy bug. (nw) Curt Coder2012-12-091-1/+0
|
* upd7220: Refactored to use bitmap_rgb32. (nw) Curt Coder2012-12-071-1/+2
| | | i8275: Refactored to use bitmap_rgb32. (nw)
* sed1310: Cleanup. (nw) Curt Coder2012-11-221-7/+2
| | | | | | (MESS) bw2: Fixed memory mapping. (nw) (MESS) msm6255: Refactored to use device_memory_interface. (nw) (MESS) floppy: Added macros for declaring modern floppy formats. The generic floppy formats (D88/DFI/IMD/IPF/MFI/MFM) are now automatically supported in each driver using the modern floppy code. [Curt Coder]
* (mess) upd765: Modernize [O. Galibert] Olivier Galibert2012-10-101-41/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remaining TODO list: - take WP into account - test the amstrad, implement its observational format (edsk) using pasti as a start. Or find the legendary amstrad IPFs. Or both. - correct read track, the implementation is completely wrong. See previous for testing, it's only used in protections the check the inter-sector gaps. - shake and bake on the amstrad, protections are the best to find bugs in a fdc - add the scan id commands, but nothing seems to use them - debug the 2.88M formatting which is unreliable. Fix its IDAM/DAM gap size on formatting too (but that's not what's making it unreliable) - test all the systems that were hit, and fix what needs to be fixed. Beware that multiple problems may happen: - upd765 may be wrong - the driver may not be working - the hookup may be wrong/incomplete (bitrate selection and floppy rpm in particular) - the driver may be too limited for the new implementation (the x68k dma device does not handle non-instant dma yet for instance) - report invalid command when appropriate depending on the actual chip emulated - add the russian clones with their real names
* Memory handler cleanup 3. Add mem_mask parameter Aaron Giles2012-09-171-2/+2
| | | | | | | | to 8-bit handlers to match the others. To ease pain, added DECLARE_READ/WRITE_HANDLER macros that set up a default parameter. Also updated devcb so that the handlers can be called with or without the mem_mask. [Aaron Giles]
* Memory handler normalization, part 2. Change legacy Aaron Giles2012-09-171-2/+2
| | | | | | | read/write handlers to take an address_space & instead of an address_space *. Also update pretty much all other functions to take a reference where appropriate. [Aaron Giles]
* Clear out remaining global inlines in diexec.h. Aaron Giles2012-09-121-1/+1
|
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+345