summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/bml3.c
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-1114/+0
|
* bml3: use standard 3-bit brg palette Dirk Best2015-07-291-11/+2
|
* change flags from GAME_ to MACHINE_ David Haywood2015-07-291-3/+3
| | | | 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.
* update for Jonathan Edwards (nw) Miodrag Milanovic2015-05-261-1/+1
|
* Added resto for Kale, these are BSD3 (nw) Miodrag Milanovic2015-05-121-1/+1
|
* Cleanups and version bump Miodrag Milanovic2014-07-221-1/+1
|
* cassette config moved inline (nw) Miodrag Milanovic2014-05-021-1/+1
|
* mc6845: converted to devcb2, delegates and inline configs. nw. Fabio Priuli2014-05-011-28/+19
| | | | | | | | | 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 :)
* bml3bus_device: converted to devcb2 (nw) Ivan Vangelista2014-04-161-18/+14
|
* Cleanups and version bumpmame0153 Miodrag Milanovic2014-04-071-1/+1
|
* (MESS) Moved the remaining slot interfaces to emu/bus. (nw) Curt Coder2014-03-171-4/+4
|
* Fixed all bitmap.palette() users to use m_palette instead (nw) Miodrag Milanovic2014-03-151-2/+5
|
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-4/+5
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* Rewritten 6850 based on datasheet using external CLOCK & removed MIDI clock ↵ smf-2014-02-211-23/+29
| | | | hacks. Standardised COM8116 DEVCB2 callbacks. GUS gf1_device device derives from acia6850_device to gain access to the tx & rx irq state, rather than exposing it with a public method. [smf]
* first round of clang 3.4 fixes for MESS (nw) Oliver Stöneberg2014-02-201-0/+2
|
* Converted palette_t and palette_client to classes. General palette.c Aaron Giles2014-02-181-1/+1
| | | | cleanup.
* remove 6821 from the MCFG PIA macros, not all PIA's are 6821's (nw) smf-2014-01-071-1/+1
|
* Converted PIA6821 to DEVCB2 [smf] smf-2014-01-061-11/+4
|
* added screen visarea adjustment to mc6845 config interface Michaël Banaan Ananas2014-01-041-0/+1
|
* (MESS) bml3 : added cassette Robbbert2013-12-291-36/+98
|
* (MESS) bml3.c: Commented out unused variable. (nw) Wilbert Pol2013-12-271-1/+1
|
* (MESS) bml3 : replaced beeper with speaker; fixed a video issue (nw) Robbbert2013-12-271-181/+144
|
* replaced read rx/cts/dcd callbacks in ACIA6850 write write handlers, which ↵ smf-2013-12-221-24/+0
| | | | allows multiple chips to be connected together without using glue methods. [smf]
* 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/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 bumpmame0149u1 Miodrag Milanovic2013-07-231-35/+35
|
* (MESS)bml3: Add stub variants bml3mk2 (for MB-6891) and bml3mk5 [jedwidz] Miodrag Milanovic2013-07-041-180/+86
| | | | | | | | | | | | | | | (for MB-6892). For now these behave the same as bml3 (MB-6890). Refactor disk controllers and kanji ROM as slot devices. This allows switching between MP-1802 and MP-1805 disk controllers. MP-1805 disk controller now works. Kanji ROM now works. Keyboard scanning in 'counter disabled' mode now works. imgtool: Add bml3 driver, supporting both single-density (MP-1805 controller) and double-density (MP-1802 controller) disks in D88 format. mc6843: Work around floppy_get_device() not finding drives attached to a slot device.Store all 8 bits in CTAR current track register, rather than excluding bit 7 (needed for bml3 MP-1805 boot)
* (MESS) bml3: added software list for floppy disks. [Anna Wu] Fabio Priuli2013-06-211-0/+2
|
* (MESS)-bml3: split into three variants (bml3, bml3a and bml3b) according to ↵ Miodrag Milanovic2013-06-191-348/+359
| | | | | | | floppy disk support. Only bml3a (5.25" disk) is considered working. [jedwidz] -m6809: Initially setting S with a 'TFR *,S' evidently should enable NMI [jedwidz] -mc6845: Add rudimentary support for 'interlace and video' mode [jedwidz]
* Cleanups and version bumpmame0149 Miodrag Milanovic2013-06-111-43/+43
|
* (MESS) bml3.c [jedwidz] Miodrag Milanovic2013-06-051-76/+334
| | | | | - improved keyboard - improved video - disk support
* modernised YM2203 [smf] smf-2013-05-111-20/+18
|
* made BEEP and RAM devices initialize in constructor of driver classes (nw) Miodrag Milanovic2013-04-231-2/+2
|
* (MESS) cassette cleanup (nw) Miodrag Milanovic2013-04-171-1/+1
|
* Removal of machine().root_device() where appropriate (nw) Miodrag Milanovic2013-04-141-8/+8
|
* changed machine().device("maincpu") with m_maincpu in mess tree part (nw) Miodrag Milanovic2013-04-101-2/+2
|
* Modernized the beep and taitosnd devices. [Andrew Gardner] Andrew Gardner2013-03-061-3/+3
|
* Cleanups and version bumpmame0148u1 Miodrag Milanovic2013-02-111-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]
* output of new srcclean changes that are relatively small [smf] smf-2013-01-111-2/+0
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-65/+64
|
* Replaced all device_t's with actual device classes. Regression test ↵ Curt Coder2012-11-261-1/+1
| | | | recommended. (nw)
* srcclean (nw) Curt Coder2012-10-071-2/+2
|
* Replace some *_DEVICE_HANDLER with _MEMBER calls (no whatsnew) Miodrag Milanovic2012-09-261-7/+9
|
* TIMER_CALLBACK_DEVICE_MEMBER modernization part 2 (no whatsnew) Miodrag Milanovic2012-09-251-7/+7
|
* change from device->machine() to space.machine() in device handlers in order ↵ Miodrag Milanovic2012-09-211-2/+2
| | | | to make next changes easier (no whatsnew)
* Since nobody checks for NULLs anyway, make Aaron Giles2012-09-191-29/+29
| | | | | | | | | | | | device_memory_interface::space() assert against NULL and return a reference, and pushed references throughout all address space usage in the system. Added a has_space() method to check for those rare case when it is ambiguous. [Aaron Giles] Also reinstated the generic space and added fatal error handlers if anyone tries to actually read/write from it.
* INTERRUPT_GEN -> INTERRUPT_GEN_MEMBER for MESS part (no whatsnew) Miodrag Milanovic2012-09-181-9/+10
|
* changed most of screen.machine() to machine() (no whatsnew) Miodrag Milanovic2012-09-181-2/+2
|
* Modernized screen update calls (no whatsnew) Miodrag Milanovic2012-09-171-25/+26
|