summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/i86/i286.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/i86/i286.h')
-rw-r--r--src/devices/cpu/i86/i286.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/cpu/i86/i286.h b/src/devices/cpu/i86/i286.h
index 0012cd63699..97752a5d102 100644
--- a/src/devices/cpu/i86/i286.h
+++ b/src/devices/cpu/i86/i286.h
@@ -74,6 +74,7 @@ public:
typedef delegate<uint32_t (bool)> a20_cb;
template <typename Object> void set_a20_callback(Object &&cb) { m_a20_callback = std::forward<Object>(cb); }
template <class Object> devcb_base &set_shutdown_callback(Object &&cb) { return m_out_shutdown_func.set_callback(std::forward<Object>(cb)); }
+ auto shutdown_callback() { return m_out_shutdown_func.bind(); }
protected:
virtual void execute_run() override;