Fixed typo for IO1 irq callback

This commit is contained in:
Pierpaolo Prazzoli 2008-01-01 21:39:10 +00:00
parent 744da0e482
commit 7ad91eead6

View File

@ -1542,7 +1542,7 @@ static void check_interrupts(void)
if (IO1_LINE_STATE && (FCR & 0x00000005) == 0x00000004) if (IO1_LINE_STATE && (FCR & 0x00000005) == 0x00000004)
{ {
execute_int(get_trap_addr(IO1)); execute_int(get_trap_addr(IO1));
(*hyperstone.irq_callback)(IRQ_IO3); (*hyperstone.irq_callback)(IRQ_IO1);
return; return;
} }