summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc/exp/exp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bbc/exp/exp.h')
-rw-r--r--src/devices/bus/bbc/exp/exp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/bbc/exp/exp.h b/src/devices/bus/bbc/exp/exp.h
index 198904d20ce..5269deb3900 100644
--- a/src/devices/bus/bbc/exp/exp.h
+++ b/src/devices/bus/bbc/exp/exp.h
@@ -56,8 +56,8 @@ class bbc_exp_slot_device : public device_t, public device_slot_interface
public:
// construction/destruction
template <typename T>
- bbc_exp_slot_device(machine_config const &mconfig, char const *tag, device_t *owner, T &&slot_options, const char *default_option)
- : bbc_exp_slot_device(mconfig, tag, owner)
+ bbc_exp_slot_device(machine_config const &mconfig, char const *tag, device_t *owner, uint32_t clock, T &&slot_options, const char *default_option)
+ : bbc_exp_slot_device(mconfig, tag, owner, clock)
{
option_reset();
slot_options(*this);
@@ -65,7 +65,7 @@ public:
set_fixed(false);
}
- bbc_exp_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
+ bbc_exp_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// callbacks
auto irq_handler() { return m_irq_handler.bind(); }