diff options
author | 2012-05-19 17:25:12 +0000 | |
---|---|---|
committer | 2012-05-19 17:25:12 +0000 | |
commit | df357d00258b7e32fd0f27c5b4b6b80e0866d011 (patch) | |
tree | 699cbe0c242ab4017bf04904a27b4b25aadf23d7 /src/emu/machine/68681.h | |
parent | 724bcae310e499a3b01e33369d962aba9474bcf6 (diff) |
mc68681: Fixed generation of spurious interrupts, and provide ASSERT/CLEAR states to the IRQ callback. [R. Belmont]
Diffstat (limited to 'src/emu/machine/68681.h')
-rw-r--r-- | src/emu/machine/68681.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/68681.h b/src/emu/machine/68681.h index 25b5df8b7c0..8edaeb0c772 100644 --- a/src/emu/machine/68681.h +++ b/src/emu/machine/68681.h @@ -6,7 +6,7 @@ typedef struct _duart68681_config duart68681_config; struct _duart68681_config { - void (*irq_handler)(device_t *device, UINT8 vector); + void (*irq_handler)(device_t *device, int state, UINT8 vector); void (*tx_callback)(device_t *device, int channel, UINT8 data); UINT8 (*input_port_read)(device_t *device); void (*output_port_write)(device_t *device, UINT8 data); |