diff options
author | 2013-12-16 21:50:54 +0000 | |
---|---|---|
committer | 2013-12-16 21:50:54 +0000 | |
commit | 210a6c984614ac369bce5b4d3fc334c59bdb6c06 (patch) | |
tree | ec3a9963b336f064e6945e2d8ea1804cb56acac7 /src/emu/machine/netlist.c | |
parent | 5767d13911ee915ed2cbbbb32a06110c0e268159 (diff) |
Netlist & pong:
- update the parser code
- the "rom" netlist and preprocessor netlist are now aligned again.
- got rid of fatalerror in netlist/* code. Implementing applications have
to implement fatalerror in a derived class from netlist_base_t now.
Diffstat (limited to 'src/emu/machine/netlist.c')
-rw-r--r-- | src/emu/machine/netlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/netlist.c b/src/emu/machine/netlist.c index 94024f86355..7ff8e043be8 100644 --- a/src/emu/machine/netlist.c +++ b/src/emu/machine/netlist.c @@ -97,7 +97,7 @@ void netlist_mame_device::device_start() allok &= ods->object()->OnDeviceStart(); if (!allok) - fatalerror("required elements not found\n"); + m_netlist->xfatalerror("required elements not found\n"); m_setup->resolve_inputs(); |