diff options
| author | 2019-07-19 12:10:18 -0400 | |
|---|---|---|
| committer | 2019-07-19 12:10:39 -0400 | |
| commit | 9591717732fd8944cca5bad21e3847d1e70fe14f (patch) | |
| tree | 3fde791bbe1eaa2779db711e3ad264fb96250a70 | |
| parent | 5ffe45d37bdb103b70ab5c00eb0034b9aff0371e (diff) | |
poly88: Correct USART interrupt vector (nw)
| -rw-r--r-- | src/mame/machine/poly88.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/poly88.cpp b/src/mame/machine/poly88.cpp index d922cdd5a1e..354b26e7954 100644 --- a/src/mame/machine/poly88.cpp +++ b/src/mame/machine/poly88.cpp @@ -195,7 +195,7 @@ WRITE_LINE_MEMBER(poly88_state::usart_ready_w) { if (state) { - m_int_vector = 0xdf; + m_int_vector = 0xe7; m_maincpu->set_input_line(0, HOLD_LINE); } } |
