diff options
author | 2016-07-08 16:55:52 -0400 | |
---|---|---|
committer | 2016-07-08 16:55:52 -0400 | |
commit | e720f794816677762e1d35864d6946499faab520 (patch) | |
tree | 9ca63a45e59046a1910f33de15f62fd40ed14d83 /src/devices/cpu/m6809/m6809.h | |
parent | aaa3090dd3a40587f3d4cd7ab8016bcd96131e08 (diff) |
Further IRQ passthrough cleanup
- Remove irq_line methods from M6502, M6800, M6809, S2600 and replace uses with DEVCB_INPUTLINE
- Remove a few IRQ passthroughs from spiders.cpp
- Add several aliases for M6800_IRQ_LINE
Diffstat (limited to 'src/devices/cpu/m6809/m6809.h')
-rw-r--r-- | src/devices/cpu/m6809/m6809.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/devices/cpu/m6809/m6809.h b/src/devices/cpu/m6809/m6809.h index a992be78789..127a62907b4 100644 --- a/src/devices/cpu/m6809/m6809.h +++ b/src/devices/cpu/m6809/m6809.h @@ -34,10 +34,6 @@ public: // construction/destruction m6809_base_device(const machine_config &mconfig, const char *name, const char *tag, device_t *owner, UINT32 clock, const device_type type, int divider, const char *shortname, const char *source); - DECLARE_WRITE_LINE_MEMBER( irq_line ); - DECLARE_WRITE_LINE_MEMBER( firq_line ); - DECLARE_WRITE_LINE_MEMBER( nmi_line ); - protected: class memory_interface { public: |