summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/c10.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/c10.cpp')
-rw-r--r--src/mame/drivers/c10.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/c10.cpp b/src/mame/drivers/c10.cpp
index 59462dfbea2..511b6741ffe 100644
--- a/src/mame/drivers/c10.cpp
+++ b/src/mame/drivers/c10.cpp
@@ -81,7 +81,7 @@ void c10_state::device_timer(emu_timer &timer, device_timer_id id, int param, vo
membank("boot")->set_entry(0);
break;
default:
- assert_always(false, "Unknown id in c10_state::device_timer");
+ throw emu_fatalerror("Unknown id in c10_state::device_timer");
}
}
vatar.com/avatar/dd6c8f34d52964bf692889033ee7bfe1?s=13&d=retro' /> Miodrag Milanovic2016-01-201-1/+1 * tags are now strings (nw) Miodrag Milanovic2016-01-161-1/+1 * Added license for Paul Leaman, also resolved status of Steven Frew (nw) Miodrag Milanovic2016-01-111-1/+1 * removed auto_bitmap_ind*_alloc and auto_bitmap_rgb32_alloc and replaced with ... Miodrag Milanovic2015-12-171-1/+1 * overrides in drivers (nw) Miodrag Milanovic2015-12-061-3/+3 * misc palette cleanups (nw) Dirk Best2015-08-021-2/+0 * Sync other dirs with main driver license for MAME (nw) Miodrag Milanovic2015-05-131-1/+1 * Added dummy license headers for MAME part (nw) Miodrag Milanovic2015-05-071-0/+2 * Black Tiger / Black Dragon (mixed bootleg?) [Bonky0013] David Haywood2014-05-081-0/+2 * Moved optional_device<screen_device> m_screen and optional_device<palette_dev... Miodrag Milanovic2014-03-051-1/+3 * moved optional_device<gfxdecode_device> to specific drivers state classes (nw) Miodrag Milanovic2014-02-171-1/+3 * some cleanup (nw) Miodrag Milanovic2013-04-111-1/+2 * added m_maincpu to the rest of drivers in mame (nw) Miodrag Milanovic2013-04-101-1/+3 * moved cpu_device * to required_device in existing driver state classes (nw) Miodrag Milanovic2013-04-091-2/+3 * device callback handler cleanup (nw) Miodrag Milanovic2013-04-011-0/+1 * Modernization of drivers part 1 (no whatsnew) Miodrag Milanovic2013-02-051-0/+1 * Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-1/+1 * manual cleanup of mame and mess includes (no whatsnew) Miodrag Milanovic2012-09-181-8/+0 * Modernized screen update calls (no whatsnew) Miodrag Milanovic2012-09-171-1/+2 * Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT chang... Miodrag Milanovic2012-09-131-1/+4 * Clear out remaining global inlines in diexec.h. Aaron Giles2012-09-121-1/+1 * TILE/TILEMAP modernization part 2 (no whatsnew) Miodrag Milanovic2012-09-061-0/+4 * Remove AM_BASE in favor of AM_SHARED + required_shared_ptr. Aaron Giles2012-04-151-3/+4 * MAME going modern part 7 (no whatsnew) Miodrag Milanovic2012-04-061-9/+9 * MAME going modern part 5 (no whatsnew) Miodrag Milanovic2012-04-041-0/+6 * Create new devices buffered_spriteram<n>_device, which manage buffered Aaron Giles2012-03-081-3/+5 * Death to SCREEN_EOF, which was ambiguously called either Aaron Giles2012-01-141-1/+1 * Major bitmap-related changes throughout the system. There are Aaron Giles2012-01-121-1/+1 * Collapsed device_config and device_t into one class. Updated all Aaron Giles2011-04-271-2/+2 * Final bulk rename for 0.142: ensure that all members of Aaron Giles2011-04-011-14/+19 * Modified video update system. [Miodrag Milanovic] Miodrag Milanovic2011-02-241-2/+2 * running_device -> device_t Aaron Giles2010-12-311-2/+2 * Changed driver_data objects to be devices. Replaced the driver_data_t Aaron Giles2010-09-021-5/+3 * (Wow, I had no idea quite so many drivers were using driver_data!) Aaron Giles2010-08-041-3/+4 * Cleanups and version bump.