summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/device.cpp
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master' into time-experiments2 Aaron Giles2021-09-101-0/+2
|\
| * Allow devices to specify a parent for the purpose of searching for ROMs. Vas Crabb2021-09-061-0/+2
* | Since I already had to touch all device_timer signatures, bite the bullet and... Aaron Giles2021-08-201-1/+1
* | Remove timer_alloc from scheduler, keeping it exclusively in the device_t cla... Aaron Giles2021-08-171-1/+1
* | Remove m_subseconds_per_clock from device_t, defering to attotime helpers for... Aaron Giles2021-08-161-18/+3
* | You know, if I'm nice enough to give you an accessor, please use it. Aaron Giles2021-04-241-1/+1
* | Move device timer initialization earlier since sometimes timers are primed be... Aaron Giles2021-04-151-3/+6
* | A few tweaks to realign with original code better. Aaron Giles2021-04-061-4/+4
* | Rename raw_subseconds() to frac(). Create initial cut at new attotime impleme... Aaron Giles2021-04-041-1/+1
* | Switch out attoseconds in favor of more abstract subseconds. Update everyone ... Aaron Giles2021-04-021-6/+6
* | Major timer object reshuffling. timer_expired_delegate wraps the various call... Aaron Giles2021-03-261-24/+3
* | Add scheduler object and accessor to device_t. Upgrade all 3 timer parameters... Aaron Giles2021-03-241-3/+4
* | Unsplit timer.h and just moved schedule.h up higher in the emu.h include orde... Aaron Giles2021-03-241-8/+1
* | Fully deprecate unregistered timer_set/synchronize. Standardize on emu_timer_... Aaron Giles2021-03-241-0/+10
* | Removed ptr parameter from temporary timers. Fixed a handful of places that u... Aaron Giles2021-03-221-2/+2
|/
* Much more core std::string_view modernization AJR2021-01-201-24/+66
* -osd: Clean up inline maths utilities. Vas Crabb2021-01-181-1/+1
* Eliminate many unnecessary c_str calls AJR2020-12-211-1/+1
* device.cpp: Do a little less logging AJR2020-12-211-2/+3
* view: Save their state Olivier Galibert2020-12-211-0/+17
* -Switch to building MAME as C++17. Vas Crabb2020-11-151-2/+2
* validity.cpp, devfind.cpp: Catch missing required I/O ports in systems (exclu... Vas Crabb2020-08-281-4/+4
* device.cpp, dimemory.cpp: Correct typos in comments AJR2020-07-211-2/+2
* device.cpp: initialized a couple of variables, fixes numerous bugs in devnocl... Ivan Vangelista2020-05-131-4/+6
* (nw) Cleanup on the way: Vas Crabb2020-03-101-1/+18
* fixed some clang-tidy warnings (nw) (#6236) Oliver Stöneberg2020-01-301-4/+4
* Merge pull request #6195 from firewave/includes R. Belmont2020-01-221-1/+1
|\
| * use C++ library includes (nw) firewave2020-01-221-1/+1
* | fixed some clang-tidy warnings (nw) (#6197) Oliver Stöneberg2020-01-221-3/+3
|/
* These two should be noexcept as well (nw) AJR2019-11-091-2/+2
* Cleaned up Virtal Boy slot code. Vas Crabb2019-11-101-3/+2
* Make devdelegate more like devcb for configuration. This is a Vas Crabb2019-10-261-1/+1
* Fix main fallout (nw) Olivier Galibert2018-08-261-24/+9
* emumem: Fix ioports/membanks in internal maps [O. Galibert] Olivier Galibert2018-08-261-8/+9
* devcb3 Vas Crabb2018-07-071-0/+11
* Move ROM loading macros to romentry.h and remove romload.h from emu.h (nw) AJR2018-06-241-0/+1
* as if millions of this pointers suddenly cried out in terror, and were sudden... Vas Crabb2018-06-081-25/+19
* Route sound relative to current device. Vas Crabb2018-05-011-3/+5
* Make devopt menu localisable. Vas Crabb2018-04-281-0/+13
* Sarayan made me do it. Vas Crabb2018-04-281-4/+4
* Allow machine configuration to specify BIOS easily, move default BIOS selecti... Vas Crabb2018-03-261-1/+50
* destaticify initializations (nw) (#3289) wilbertpol2018-03-041-6/+6
* Fixes (nw) Olivier Galibert2018-02-131-22/+36
* Move object finder resolution before device_start - should solve github #2759 Vas Crabb2017-10-281-2/+29
* finally got rid of machine_mconfig_additions (nw) Ivan Vangelista2017-06-141-17/+1
* There's no day like today. This just follows up on the last commit: game dri... Vas Crabb2017-05-221-0/+14
* Move static data out of devices into the device types. This is a significant... Vas Crabb2017-05-141-25/+22
* Defend clocks_to_attotime and attotime_to_clocks against the possibility of t... AJR2017-04-211-2/+7
* Mechanism for devices to generate clocks for other devices AJR2017-04-211-9/+44
* Self-registering devices. Vas Crabb2017-03-031-0/+56