diff options
author | 2011-07-05 14:18:13 +0000 | |
---|---|---|
committer | 2011-07-05 14:18:13 +0000 | |
commit | 10db9b3a8f6cf484a62db4d9fb1c12de28b70fe1 (patch) | |
tree | c67bbdc1320b5b7e0641ff401c61f4d55fdc1189 /src/emu/machine/pic8259.h | |
parent | 4de1794181dfabdaa5a7b13ab478343e46d3d5d6 (diff) |
pic8259 - Kill me but this is how it works (no whatsnew)
Diffstat (limited to 'src/emu/machine/pic8259.h')
-rw-r--r-- | src/emu/machine/pic8259.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emu/machine/pic8259.h b/src/emu/machine/pic8259.h index 230074880ec..0803b5d2d58 100644 --- a/src/emu/machine/pic8259.h +++ b/src/emu/machine/pic8259.h @@ -29,6 +29,7 @@ #include "devcb.h" DECLARE_LEGACY_DEVICE(PIC8259, pic8259); +DECLARE_LEGACY_DEVICE(PIC8259A, pic8259a); /*************************************************************************** TYPE DEFINITIONS @@ -53,6 +54,9 @@ struct pic8259_interface MCFG_DEVICE_ADD(_tag, PIC8259, 0) \ MCFG_DEVICE_CONFIG(_intrf) +#define MCFG_PIC8259A_ADD(_tag, _intrf) \ + MCFG_DEVICE_ADD(_tag, PIC8259A, 0) \ + MCFG_DEVICE_CONFIG(_intrf) /* device interface */ READ8_DEVICE_HANDLER( pic8259_r ); |