Called from class SY6522
| 116 | |
| 117 | // Called from class SY6522 |
| 118 | void MockingboardCardManager::UpdateIRQ(void) |
| 119 | { |
| 120 | bool irq = false; |
| 121 | for (UINT i = SLOT0; i < NUM_SLOTS; i++) |
| 122 | { |
| 123 | if (IsMockingboard(i)) |
| 124 | irq |= dynamic_cast<MockingboardCard&>(GetCardMgr().GetRef(i)).Is6522IRQ(); |
| 125 | } |
| 126 | |
| 127 | if (irq) |
| 128 | CpuIrqAssert(IS_6522); |
| 129 | else |
| 130 | CpuIrqDeassert(IS_6522); |
| 131 | } |
| 132 | |
| 133 | bool MockingboardCardManager::IsActiveToPreventFullSpeed(void) |
| 134 | { |
nothing calls this directly
no test coverage detected