diff options
author | 2014-07-22 06:21:54 +0000 | |
---|---|---|
committer | 2014-07-22 06:21:54 +0000 | |
commit | 79246ab9172f61178139b4b7974debba8fb7c5f8 (patch) | |
tree | 6365530c8cf287ea3b7752c3c45c8c6f8e4c68ae /src/emu/machine/upd71071.h | |
parent | 5d7e1fcc62a7f9dd5441eaccbc274f9327efcf00 (diff) |
More cleanups, there is issue with srcclean that needs to be taken care as well, just doing now what we can
Diffstat (limited to 'src/emu/machine/upd71071.h')
-rw-r--r-- | src/emu/machine/upd71071.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/upd71071.h b/src/emu/machine/upd71071.h index 3f8f11bb3ed..61e254b3e7e 100644 --- a/src/emu/machine/upd71071.h +++ b/src/emu/machine/upd71071.h @@ -26,7 +26,7 @@ class upd71071_device : public device_t public: upd71071_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); ~upd71071_device() {} - + static void static_set_cpu_tag(device_t &device, const char *tag) { downcast<upd71071_device &>(device).m_cpu.set_tag(tag); } static void set_clock(device_t &device, int clock) { downcast<upd71071_device &>(device).m_upd_clock = clock; } template<class _Object> static devcb_base &set_out_hreq_callback(device_t &device, _Object object) { return downcast<upd71071_device &>(device).m_out_hreq_cb.set_callback(object); } @@ -98,7 +98,7 @@ extern const device_type UPD71071; #define MCFG_UPD71071_CLOCK(_clk) \ upd71071_device::set_clock(*device, _clk); - + #define MCFG_UPD71071_OUT_HREQ_CB(_devcb) \ devcb = &upd71071_device::set_out_hreq_callback(*device, DEVCB_##_devcb); |