| Previous | 199869 Revisions | Next |
| r32446 Sunday 28th September, 2014 at 08:17:30 UTC by smf |
|---|
| (MESS) portfolio: only trigger interrupts when the 8250 asserts the line, not when it clears it. [smf] |
| [src/mess/drivers] | portfoli.c |
| r32445 | r32446 | |
|---|---|---|
| 707 | 707 | |
| 708 | 708 | WRITE_LINE_MEMBER( portfolio_state::i8250_intrpt_w ) |
| 709 | 709 | { |
| 710 | trigger_interrupt(INT_EXTERNAL); | |
| 710 | if (state) | |
| 711 | trigger_interrupt(INT_EXTERNAL); | |
| 711 | 712 | } |
| 712 | 713 | |
| 713 | 714 | //************************************************************************** |
| Previous | 199869 Revisions | Next |