| 1592 | } |
| 1593 | |
| 1594 | void exception3_read_prefetch(uae_u32 opcode, uae_u32 addr) |
| 1595 | { |
| 1596 | if (cpu_lvl == 1) { |
| 1597 | get_word_test(addr & ~1); |
| 1598 | } else { |
| 1599 | add_memory_cycles(addr, 1); |
| 1600 | } |
| 1601 | exception3_pc_inc(); |
| 1602 | |
| 1603 | test_exception = 3; |
| 1604 | test_exception_3_w = 0; |
| 1605 | test_exception_addr = addr; |
| 1606 | test_exception_opcode = opcode; |
| 1607 | test_exception_3_fc = 2; |
| 1608 | test_exception_3_size = sz_word; |
| 1609 | test_exception_3_di = 0; |
| 1610 | |
| 1611 | doexcstack(); |
| 1612 | } |
| 1613 | |
| 1614 | void exception3_read_prefetch_68040bug(uae_u32 opcode, uae_u32 addr, uae_u16 secondarysr) |
| 1615 | { |
nothing calls this directly
no test coverage detected