summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mc68681.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/mc68681.h')
-rw-r--r--src/devices/machine/mc68681.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/machine/mc68681.h b/src/devices/machine/mc68681.h
index 452b67cb64f..e6e588ddb25 100644
--- a/src/devices/machine/mc68681.h
+++ b/src/devices/machine/mc68681.h
@@ -121,6 +121,9 @@ public:
// inline configuration helpers
static void static_set_clocks(device_t &device, int clk3, int clk4, int clk5, int clk6);
+ static void static_set_clocks(device_t &device, const XTAL &clk3, const XTAL &clk4, const XTAL &clk5, const XTAL &clk6) {
+ static_set_clocks(device, clk3.value(), clk4.value(), clk5.value(), clk6.value());
+ }
// API
virtual DECLARE_READ8_MEMBER(read);