summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6809/m6809.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6809/m6809.h')
-rw-r--r--src/devices/cpu/m6809/m6809.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/devices/cpu/m6809/m6809.h b/src/devices/cpu/m6809/m6809.h
index 0138ee18b79..bb52b0880dd 100644
--- a/src/devices/cpu/m6809/m6809.h
+++ b/src/devices/cpu/m6809/m6809.h
@@ -305,18 +305,13 @@ public:
// ======================> mc6809e_device
-// MC6809E has LIC line to indicate opcode/data fetch
-#define MCFG_MC6809E_LIC_CB(_devcb) \
- downcast<mc6809e_device &>(*device).set_lic_cb(DEVCB_##_devcb);
-
-
class mc6809e_device : public m6809_base_device
{
public:
// construction/destruction
mc6809e_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- // configuration helpers
+ // MC6809E has LIC line to indicate opcode/data fetch
auto lic() { return m_lic_func.bind(); }
};