summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/ns32000/slave.h
diff options
context:
space:
mode:
author Vas Crabb <cuavas@users.noreply.github.com>2023-06-17 01:10:05 +1000
committer GitHub <noreply@github.com>2023-06-17 01:10:05 +1000
commite9c1f4a42a6758a6fb75403e28c7dc6cf869081c (patch)
tree8e0b6d960bed4baec2408c9ab950218592ef33ec /src/devices/cpu/ns32000/slave.h
parentc1ceb6e016763537c5109cc76fe5d1b4ae72fdb3 (diff)
emu/devcb.h: Eliminated the need to call resolve() on callbacks. (#11333)
Read callbacks now need a default return value supplied at construction. Replaced isnull() with isunset() which tells you if the callback wasn't configured rather than whether it isn't safe to call. Enabled validation of device callbacks (it seems it was disabled at some point, probably accidentally). Device callbacks and object finders now implement the same interface for resolution.
Diffstat (limited to 'src/devices/cpu/ns32000/slave.h')
-rw-r--r--src/devices/cpu/ns32000/slave.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/devices/cpu/ns32000/slave.h b/src/devices/cpu/ns32000/slave.h
index b7511e6bcff..576689f2c04 100644
--- a/src/devices/cpu/ns32000/slave.h
+++ b/src/devices/cpu/ns32000/slave.h
@@ -35,12 +35,6 @@ protected:
{
}
- // device_interface overrides
- virtual void interface_post_start() override
- {
- m_out_scb.resolve_safe();
- }
-
devcb_write_line m_out_scb;
};