Dispatching interrupts.

This commit is contained in:
Ben Vanik
2013-10-19 12:50:26 -07:00
parent 90bc6ad1a8
commit 37065255a2
5 changed files with 11 additions and 8 deletions

View File

@@ -289,7 +289,7 @@ uint32_t RingBufferWorker::ExecutePacket(PacketArgs& args) {
uint32_t cpu_mask = READ_AND_ADVANCE_PTR();
for (int n = 0; n < 6; n++) {
if (cpu_mask & (1 << n)) {
graphics_system_->DispatchInterruptCallback(n);
graphics_system_->DispatchInterruptCallback(1, n);
}
}
}