summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/adam.c
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-1147/+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.
* tms9928a_device: converted to devcb2 (nw) Ivan Vangelista2014-04-171-8/+3
|
* Cleanups and version bumpmame0153 Miodrag Milanovic2014-04-071-3/+3
|
* (MESS) adam: WIP. (nw) Curt Coder2014-03-301-2/+1
|
* (MESS) adam: Removed tag lookup. (nw) Curt Coder2014-03-301-3/+1
|
* (MESS) adam: Added ColecoVision cartridge port slot interface. [Curt Coder] Curt Coder2014-03-131-15/+17
|
* (MESS) adam: Converted expansion slots to devcb2. (nw) Curt Coder2014-03-131-34/+6
|
* (MESS) adam: Added ColecoVision control port slot interface along with the ↵ Curt Coder2014-03-121-69/+45
| | | | ColecoVision hand controller. [Curt Coder]
* (MESS) adam: Updated comments. (nw) Curt Coder2014-03-091-2/+2
|
* Converted SN76496 ready to DEVCB2 [smf] smf-2014-02-111-11/+1
|
* reduce dependency mak files by 130k (nw) smf-2013-12-291-0/+8
|
* (MESS) adam: Added a second floppy drive and verified 160KB floppy image gap ↵ Curt Coder2013-11-181-1/+2
| | | | | sizes. [Curt Coder] (MESS) adam_flop.xml: Added disk utilities. [Curt Coder]
* License tags. (nw) Curt Coder2013-10-161-0/+2
|
* m6800.c: Modernized cpu core (nw) Wilbert Pol2013-08-071-7/+2
|
* small MACHINE_RESET cleanup Oliver Stöneberg2013-08-051-4/+0
|
* 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
* Moved default card config, device inputs and clock off the slot interface so ↵ smf-2013-05-291-18/+18
| | | | they can be specified for all cards [smf]
* (MESS) Tagmap lookup cleanup. (nw) Curt Coder2013-01-281-9/+4
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-74/+74
|
* Cleanups and version bump (nw)mame0147u3 Miodrag Milanovic2012-11-191-75/+75
|
* (MESS) adam: Added floppy controller ROMs. [John Turner] Curt Coder2012-11-111-19/+13
|
* (MESS) adam: Added all 3 expansion slot interfaces, and the 64K RAM ↵ Curt Coder2012-11-081-79/+295
| | | | expansion card. [Curt Coder]
* (MESS) adam: Created an ADAMnet slot interface and separated the ADAMnet ↵ Curt Coder2012-11-071-1078/+156
| | | | devices from the driver. [Curt Coder]
* (MESS) adam: Added floppy controller ROMs. [Geoff Oltmans] Curt Coder2012-11-041-57/+39
|
* (MESS) adam: Added cartridge, cassette and floppy software lists. (nw) Curt Coder2012-11-021-6/+148
|
* Replace some *_DEVICE_HANDLER with _MEMBER calls in MESS section (no whatsnew) Miodrag Milanovic2012-10-031-7/+5
|
* Removed _new from name of modern device (no whatsnew) Miodrag Milanovic2012-10-021-2/+2
|
* Some manual cleanup (no whatsnew) Miodrag Milanovic2012-09-251-1/+1
|
* TIMER_CALLBACK_DEVICE_MEMBER modernization part 1 (no whatsnew) Miodrag Milanovic2012-09-251-6/+4
|
* Since nobody checks for NULLs anyway, make Aaron Giles2012-09-191-15/+15
| | | | | | | | | | | | 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.
* Clear out remaining global inlines in diexec.h. Aaron Giles2012-09-121-3/+3
|
* 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]
* Add ambiguous execute() and memory() methods to the Aaron Giles2012-09-111-1/+1
| | | | | | | device_execute/memory_interfaces respectively in order to catch unnecessary usage of the corresponding device_t methods. Removed all existing redundant usage. [Aaron Giles]
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+1811