summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nubus
Commit message (Collapse)AuthorAgeFilesLines
* srcclean and regenerate localisations (nw) Vas Crabb2018-01-281-10/+10
|
* xtal.h is dead, long live to xtal.cpp [O. Galibert] Olivier Galibert2018-01-232-3/+3
|
* API Change: Machine configs are now a method of the owner class, and the ↵ Olivier Galibert2018-01-1718-18/+18
| | | | | | | | | | 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.
* Privatize m_screen and other variables of device_video_interface (nw) AJR2018-01-0512-34/+34
|
* Extended time! All space.device() removed from comments (nw) Olivier Galibert2018-01-0510-53/+53
|
* mac: preliminary support for AE Quadralink 4-port serial [R. Belmont, Al Kossow] arbee2018-01-022-0/+239
|
* mac: added 1.3 ROM to BootBug card [Al Kossow] arbee2018-01-011-2/+5
|
* Remove a bunch of space.device().safe_pc() from devices (nw) Olivier Galibert2017-12-302-4/+4
|
* mac: Support for "BootBug" NuBus remote debugger card [Al Kossow, R. Belmont] arbee2017-12-252-0/+167
|
* Revert "Revert "Merge branch 'master' of https://github.com/mamedev/mame"" Firehawke2017-12-132-2/+2
| | | | This reverts commit 54155441e9ba9941e85d80c4834a66376a11e791.
* Revert "Merge branch 'master' of https://github.com/mamedev/mame" Firehawke2017-12-132-2/+2
| | | | | This reverts commit f537428e5a40ba6dde8ca9bf0fe9ae6b1f189ac4, reversing changes made to 0d70d798107d4e4e8fb9f230410aeb1e888d65c5.
* get rid of legacy BITSWAP* (nw) Vas Crabb2017-12-132-2/+2
|
* Pet peeving with extreme prejudice (nw) Olivier Galibert2017-11-301-5/+5
|
* Fix build (nw) AJR2017-06-123-0/+4
|
* device_add_mconfig up to devices/bus/o* (nw) Ivan Vangelista2017-06-1232-314/+239
|
* Goodbye MACHINE_CONFIG_FRAGMENT, it was nice knowing you. Vas Crabb2017-05-2216-16/+16
| | | | | | | | | (nw) This is a pretty minimal change. The point where the root device is added has been moved from the MACHINE_CONFIG_START macro to the constructor of the machine configuration class (made possible by giving drivers their own device types). This isn't the final change in this area. The root device is still being handled specially in that its configuration comes from the game driver structure. This needs to be harmonised with regular devices. But that's a job for another day.
* Move static data out of devices into the device types. This is a ↵ Vas Crabb2017-05-1434-685/+661
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | significant change, so please pay attention. The core changes are: * Short name, full name and source file are no longer members of device_t, they are part of the device type * MACHINE_COFIG_START no longer needs a driver class * MACHINE_CONFIG_DERIVED_CLASS is no longer necessary * Specify the state class you want in the GAME/COMP/CONS line * The compiler will work out the base class where the driver init member is declared * There is one static device type object per driver rather than one per machine configuration Use DECLARE_DEVICE_TYPE or DECLARE_DEVICE_TYPE_NS to declare device type. * DECLARE_DEVICE_TYPE forward-declares teh device type and class, and declares extern object finders. * DECLARE_DEVICE_TYPE_NS is for devices classes in namespaces - it doesn't forward-declare the device type. Use DEFINE_DEVICE_TYPE or DEFINE_DEVICE_TYPE_NS to define device types. * These macros declare storage for the static data, and instantiate the device type and device finder templates. The rest of the changes are mostly just moving stuff out of headers that shouldn't be there, renaming stuff for consistency, and scoping stuff down where appropriate. Things I've actually messed with substantially: * More descriptive names for a lot of devices * Untangled the fantasy sound from the driver state, which necessitates breaking up sound/flip writes * Changed DECO BSMT2000 ready callback into a device delegate * Untangled Microprose 3D noise from driver state * Used object finders for CoCo multipak, KC85 D002, and Irem sound subdevices * Started to get TI-99 stuff out of the TI-990 directory and arrange bus devices properly * Started to break out common parts of Samsung ARM SoC devices * Turned some of FM, SID, SCSP DSP, EPIC12 and Voodoo cores into something resmbling C++ * Tried to make Z180 table allocation/setup a bit safer * Converted generic keyboard/terminal to not use WRITE8 - space/offset aren't relevant * Dynamically allocate generic terminal buffer so derived devices (e.g. teleprinter) can specify size * Imporved encapsulation of Z80DART channels * Refactored the SPC7110 bit table generator loop to make it more readable * Added wrappers for SNES PPU operations so members can be made protected * Factored out some boilerplate for YM chips with PSG * toaplan2 gfx * stic/intv resolution * Video System video * Out Run/Y-board sprite alignment * GIC video hookup * Amstrad CPC ROM box members * IQ151 ROM cart region * MSX cart IRQ callback resolution time * SMS passthrough control devices starting subslots I've smoke-tested several drivers, but I've probably missed something. Things I've missed will likely blow up spectacularly with failure to bind errors and the like. Let me know if there's more subtle breakage (could have happened in FM or Voodoo). And can everyone please, please try to keep stuff clean. In particular, please stop polluting the global namespace. Keep things out of headers that don't need to be there, and use things that can be scoped down rather than macros. It feels like an uphill battle trying to get this stuff under control while more of it's added.
* nubus_48gc: add full rom label for 341-0868 (nw) Lord-Nightmare2017-04-301-1/+1
|
* rand() corrections in src/devices/* (nw) hap2017-04-261-1/+1
|
* Add later SuperMac Spec/8 III V1.3 NuBus ROM [fink] Lord-Nightmare2017-03-271-1/+2
|
* more validation fixes (nw) Vas Crabb2017-03-041-1/+1
|
* Make device_image_interface::update_names a private method called ↵ AJR2017-03-031-6/+0
| | | | automatically at config_complete time (nw)
* Image instance name refactoring and bug fixing (nw) AJR2017-03-022-24/+26
| | | | | - update_names no longer takes arguments; the device type can be obtained easily, and the custom instance names are now overrides. Devices might not need to explicitly call update_names in the future. - Fix the frontend crash/assert failure resulting from instance names not being generated properly.
* Self-registering devices prep: Vas Crabb2017-02-2717-23/+39
| | | | | | | | | | | | | | * Make device_creator a variable template and get rid of the ampersands * Remove screen.h and speaker.h from emu.h and add where necessary * Centralise instantiations of screen and speaker finder templates * Add/standardise #include guards in many hearers * Remove many redundant #includes * Order #includesr to help catch headers that can't be #included alone (nw) This changes #include order to be prefix, unit header if applicable then other stuff roughly in order from most dependent to least dependent library. This helps catch headers that don't #include things that they use.
* Remove emu.h from headers (nw) Olivier Galibert2017-02-1117-17/+0
| | | | | | | | | | | | Per Vas' request. If the compile fails for you (i'm thinking osx and windows native debuggers here in particular), add '#include "emu.h"' as first include of the cpp files that fail. Due to our use of precompilation and forced inclusion, emu.h must be included as the very first non-comment thing we do if we want to be sure msvc compiles are identical to gcc/clang ones. Doing it directly instead of through an include increases the correctness probability by a magnitude.
* mac: fix NuBus memory stomp [R. Belmont] arbee2017-01-291-3/+3
|
* NOTICE (TYPE NAME CONSOLIDATION) Miodrag Milanovic2016-10-2234-289/+289
| | | | | Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
* dynamic_buffer is just std::vector<UINT8> (nw) Miodrag Milanovic2016-10-2115-15/+15
|
* Created a tiny_rom_entry structure for the purposes of rom_entry ↵ Nathan Woods2016-08-0632-36/+36
| | | | | | | | declarations in code, and a first pass at the required core changes to unpack tiny_rom_entry structures at runtime. WARNING - I've done preliminary testing on a tiny build (pacman works), but nothing more. I know for a fact that a full compile fails
* Turn image init/validate into scoped enums to avoid accidental casts to/from ↵ Vas Crabb2016-08-011-4/+4
| | | | | | integer and boolean types The image error should also be turned into a scoped enum - the menus were assuming it was the same thing as an init result
* std::min and std:max instead of MIN and MAX, also some more macros converted ↵ Miodrag Milanovic2016-07-311-2/+2
| | | | to inline functions (nw)
* Removing nullptr image_formats, and fixing formatting Nathan Woods2016-07-141-1/+0
|
* Consolidating implementations of create_option_guide() that return nullptr Nathan Woods2016-07-131-1/+0
|
* Cleanup and version bumpmame0175 Miodrag Milanovic2016-06-291-1/+1
|
* POSIX implementation for new directory read features, cleanup of Windows ↵ Vas Crabb2016-06-252-5/+4
| | | | implementation, return directory handle as smart pointer, fix full build [Vas Crabb]
* Memory fun [O.Galibert] Olivier Galibert2016-06-145-13/+17
| | | | | | | | | | | | | | | | | | | | | - Added AM_SELECT/addrselect field. Replaces the old AM_MIRROR/AM_MASK combo used to mirror a handler and get the mirrored bits in the offset. - Removed mask and/or mirror from where it didn't belong. Simplified a lot of instances of mask that just weren't needed, especially in bus handlers. Used the short forms of install handlers where possible. - Replaced the 60s hippy, "It's cool man" range parameter handling in map_range that tried to guess what was meant when the values passed were not entirely sensible, by a cranky, diner waitress-turned IRS auditor curmudgeon. Main control function has a series of 14 tests just to find a reason to fatalerror out your requests. You have been warned. Some drivers, hopefully not many, will fail the gate-guarding bureaucrat trials. Should be easy to fix actually, I worked on the error messages. A full regression test would be welcome.
* Fix several buses so they can work when not a direct child of the root (nw) arbee2016-04-121-1/+1
|
* Revert software-installed slot/image options when changing software AJR2016-04-041-1/+0
| | | | | - Remove emu.h's stealth include of emuopts.h through mconfig.h; reduce dependency on emuopts.h in other headers and source files. - MCFG_CPU_FORCE_NO_DRC is now a CPU configuration parameter rather than a global one; it still works to override the -drc option setting.
* Make osd_file a polymorphic class that's held with smart pointers Vas Crabb2016-03-142-15/+13
| | | | | | | | | | | | | | | Make avi_file a class that's held with smart pointers, encapsulate various AVI I/O structures Make zip_file and _7z_file classes rather than having free functions everywhere Hide zip/7z class implementation behind an interface, no longer need to call close() to send back to the cache Don't dump as much crap in global namespace Add solaris PTY implementation Improve variable expansion for SDL OSD - supports ~/$FOO/${BAR} syntax Rearrange stuff so the same things are in file module for all OSDs Move file stuff into its own module 7z/zip open and destruct are still not thread-safe due to lack of interlocks around cache access Directory functions still need to be moved to file module SDL OSD may not initialise WinSock on Windows
* reverting: Miodrag Milanovic2016-01-2034-104/+110
| | | | | | | SHA-1: 1f90ceab075c4869298e963bf0a14a0aac2f1caa * tags are now strings (nw) fix start project for custom builds in Visual Studio (nw)
* Revert "rest of device parameters to std::string (nw)" Miodrag Milanovic2016-01-2034-36/+36
| | | | This reverts commit caba131d844ade3f2b30d6be24ea6cf46b2949d7.
* rest of device parameters to std::string (nw) Miodrag Milanovic2016-01-1634-36/+36
|
* tags are now strings (nw) Miodrag Milanovic2016-01-1634-110/+104
| | | | fix start project for custom builds in Visual Studio (nw)
* cleanups (nw) Miodrag Milanovic2015-12-251-1/+1
|
* auto_alloc_array_clear -> make_unique_clear (nw) Miodrag Milanovic2015-12-191-7/+7
|
* override part 1 (nw) Miodrag Milanovic2015-12-0518-95/+95
|
* Revert "use c++ cast instead of c casts (nw)" Miodrag Milanovic2015-12-0515-43/+43
| | | | This reverts commit be704c00abe1eaaa442db81db04c8b71595d5c41.
* use c++ cast instead of c casts (nw) Miodrag Milanovic2015-12-0515-43/+43
|
* clang-modernize part 2 Miodrag Milanovic2015-12-0413-23/+23
|
* Cleanups and version bumpmame0168 Miodrag Milanovic2015-11-251-2/+2
|