summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cybstorm.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rearrange source to match project structure (done using the script in ↵ Vas Crabb2022-06-271-366/+0
| | | | src/tools).
* - diverboy.cpp, exzisus.cpp: finders, other minor cleanups Ivan Vangelista2022-03-281-15/+3
| | | | - various drivers: removed some custom GFX decodes in favor of the ones provided in emu/video/generic.cpp
* srcclean in preparation for MAME 0.235, and two small adjustments. Vas Crabb2021-09-261-2/+2
| | | | | | | * Reduce repeated directory walking in cleansrc target (substantially improves speed of building the target on Windows). * Disable a validity check using an MSVC language extension when using clang in MSVC ABI mode.
* New working machines hap2021-08-301-14/+14
| | | | | | | -------------------- SegaSonic Bros. (prototype, hack) [hap] Head On Channel (prototype, hack) [hap] OOParts (prototype) [hap]
* cybstorm.cpp: Cleaned up inputs and added comments to match observations and ↵ Scott Stone2021-08-291-20/+40
| | | | behaviours in test mode. [David Haywood]
* Fix overdriven sound in various Atari games. Aaron Giles2021-08-241-2/+2
|
* drivers starting with c and d: completed read* and write* macros removal (nw) Ivan Vangelista2020-06-081-2/+2
|
* atarisy1.cpp, atarisy2.cpp, gauntlet.cpp: Modernization AJR2020-04-211-2/+2
| | | | | | | | | | | | - Use generic latch devices for sound communications - More accurate handling of programmed sound resets - Add the other LS259 to gauntlet.cpp - Correct watchdog timeouts for all three drivers - General code cleanup atarigen: Eliminate ATARI_CLOCK_xxxMHz macros in favor of standard XTAL constants (nw) atariscom: Separate source file from atarigen.cpp; move IRQ handling to atarijsa (not a property of the actual device) (nw)
* misc Atari drivers: fixed fulltag[0] == ':' assert in debug builds (nw) Ivan Vangelista2019-12-061-3/+3
|
* (nw) Clean up the mess on master Vas Crabb2019-03-261-12/+11
| | | | | | | | | | | | | This effectively reverts b380514764cf857469bae61c11143a19f79a74c5 and c24473ddff715ecec2e258a6eb38960cf8c8e98e, restoring the state at 598cd5227223c3b04ca31f0dbc1981256d9ea3ff. Before pushing, please check that what you're about to push is sane. Check your local commit log and ensure there isn't anything out-of-place before pushing to mainline. When things like this happen, it wastes everyone's time. I really don't need this in a week when real work™ is busting my balls and I'm behind where I want to be with preparing for MAME release.
* Revert "conflict resolution (nw)" andreasnaive2019-03-251-11/+12
| | | | | This reverts commit c24473ddff715ecec2e258a6eb38960cf8c8e98e, reversing changes made to 009cba4fb8102102168ef32870892438327f3705.
* mame\drivers: removed most MCFG and MACHINE_CONFIG macros from drivers ↵ Ivan Vangelista2019-03-211-11/+10
| | | | starting with c (nw)
* some more MCFG macros removal (nw) Ivan Vangelista2019-02-081-1/+1
|
* Start cleaning up palette configuration: Vas Crabb2018-12-291-2/+1
| | | | | | | | | | * Basically, initialisers go in the constructor arguments, and things for setting format go in set_format. * Initialisation patterns can be specified with an enum discriminator or with a FUNC and optionally a tag. * Formats can be specified with an enum discriminator or a size and function pointer. * You must always supply the number of entries when setting the format. * When initislising with a paletter initialisation member, you can specify the entries and indirecte entries together. * The palette_device now has a standard constructor, so use .set_entries if you are specifying entry count with no format/initialisation. * Also killed an overload on delegates that wasn't being useful.
* src/mame: more MCFG macros removal (nw) Ivan Vangelista2018-12-181-5/+6
|
* atarigen.cpp: Continue pulling stuff out of this grab-bag (nw) AJR2018-11-301-0/+1
|
* mame/audio: various devcb3ification and demacroification (nw) Ivan Vangelista2018-11-221-6/+8
|
* watchdog: removed MCFG macros (nw) Ivan Vangelista2018-09-071-1/+1
|
* ds1315, ds1386, ds2404, ds75160a, ds75161a, eeprom, eepromser, eeprompar: ↵ mooglyguy2018-08-231-2/+1
| | | | Removed MCFG, nw
* -bankdev: Remove MCFG, nw mooglyguy2018-08-151-5/+1
|
* as if millions of this pointers suddenly cried out in terror, and were ↵ Vas Crabb2018-06-081-2/+2
| | | | | | | suddenly silenced * streamline templates in addrmap.h * get rid of overloads on read/write member names - this will become even more important in the near future
* More cleanup/streamlining of machine configuration and macros: Vas Crabb2018-05-151-2/+2
| | | | | | | | | | | | | * Get rid of implicit prefix for GFX decode names and prefix them all * Get rid of special macro for adding GFXDECODE in favour of constructor * Make empty GFX decode a static member of interface * Allow palette to be specified to GFXDECODE as a device finder * Removed diserial.h from emu.h as it's used relatively infrequently Also fix darkseal and vaportra propely. The palette device automatically attaches itself to a share with matching tag. The correct solution here is to rename one or the other out of the way, since it was never attached to a share before.
* Removed DRIVER_INIT-related macros, made driver init entry in GAME/COMP/CONS ↵ MooglyGuy2018-05-131-3/+2
| | | | | | | | | | | | explicit. (#3565) * -Removed DRIVER_INIT macros in favor of explicitly-named member functions, nw * -Removed DRIVER_INIT_related macros. Made init_ prefix on driver initializers explicit. Renamed init_0 to empty_init. Fixed up GAME/COMP/CONS macro spacing. [Ryan Holtz] * Missed some files, nw * Fix compile, (nw)
* dsp16: fix condition mask in disassembler (nw) Vas Crabb2018-05-091-1/+2
| | | | (nw) remove more MCFG macros and make speaker config more explicit
* Streamline machine configuration macros - everyone's a device edition. Vas Crabb2018-05-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Start replacing special device macros with additional constructors, starting with ISA, INTELLEC 4 and RS-232 buses. Allow an object finder to take on the target of another object finder. (For a combination of the previous two things in action, see either the INTELLEC 4 driver, or the Apple 2 PC Exporter card. Also check out looping over a device finder array to instantiate devices in some places. Lots of things no longer need to pass tags around.) Start supplying default clocks for things that have a standard clock or have all clocks internal. Eliminate the separate DEV versions of the DEVCB_ macros. Previously, the plain versions were a shortcut for DEVICE_SELF as the target. You can now supply a string tag (relative to current device being configured), an object finder (takes on the base and relative tag), or a reference to a device/interface (only do this if you know the device won't be replaced out from under it, but that's a safe assumption for your subdevices). In almost all cases, you can get the effect you want by supplying *this as the target. Eliminate sound and CPU versions of macros. They serve no useful purpose, provide no extra checks, make error messages longer, add indirection, and mislead newbies into thinking there's a difference. Remove a lot of now-unnecessary ":" prefixes binding things relative to machine root. Clean up some miscellaneous rot. Examples of new functionality in use in (some more subtle than others): * src/mame/drivers/intellec4.cpp * src/mame/drivers/tranz330.cpp * src/mame/drivers/osboren1.cpp * src/mame/drivers/zorba.cpp * src/mame/devices/smioc.cpp * src/devices/bus/a2bus/pc_xporter.cpp * src/devices/bus/isa/isa.h * src/devices/bus/isa/isa.h * src/devices/bus/intellec4/intellec4.h
* Separate a few Atari drivers from atarigen_state (nw) AJR2018-04-031-10/+2
|
* Remove sound interrupt status from atarigen base class (nw) AJR2018-04-031-2/+1
| | | | atarisy2.cpp: Replace MCFG_CPU_VBLANK_INT with line callback (nw)
* Standardise on IPT_CUSTOM for hooking up custom code in PORT_BIT, leaving ↵ smf-2018-04-031-1/+1
| | | | IPT_SPECIAL for the UI. [smf]
* MCFG_DEVICE_VBLANK_INT to MCFG_SCREEN_VBLANK_CALLBACK conversion, part 1 AJR2018-03-281-1/+1
|
* Address maps macros removal, pass 1 [O. Galibert] Olivier Galibert2018-03-141-26/+28
|
* backport lots of cleanup from WIP branch (nw) Vas Crabb2018-02-191-12/+5
|
* (nw) screw you macros and the horse you rode in on Vas Crabb2018-02-141-1/+2
| | | | | | There's no voodoo involved in derived machine configurations and fragments any more. The macros were just obfuscating things at this point.
* API change: Memory maps are now methods of the owner class [O. Galibert] Olivier Galibert2018-02-121-2/+2
| | | | | Also, a lot more freedom happened, that's going to be more visible soon.
* srcclean and regenerate localisations (nw) Vas Crabb2018-01-281-22/+22
|
* memory: Deambiguate handlers, also a hint of things to come (nw) Olivier Galibert2018-01-191-2/+2
|
* cybstorm: Typo fix ? (nw) Olivier Galibert2018-01-191-1/+1
|
* API Change: Machine configs are now a method of the owner class, and the ↵ Olivier Galibert2018-01-171-2/+2
| | | | | | | | | | prototype is simplified [O. Galibert] Beware, the device context does not follow in MCFG_FRAGMENT_ADD anymore due to the prototype change. So creating a device then configuring through a fragment doesn't work as-is. The simplest solution is just to add a MCFG_DEVICE_MODIFY at the start of the fragment with the correct tag.
* cybstorm.cpp: Fix obvious rom load typo (nw) briantro2017-12-251-1/+1
|
* New working machines: Phil Bennett2017-12-241-0/+374
Cyberstorm (prototype) [ShouTime, The Dumping Union, Christophe Marignol, Sean Sutton, gamerfan, Brandon Munger, Renato Mucciarelli, Jan Stuhler, Jeffrey Gray, Aaron Giles, Phil Bennett]