Changeset 2538 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- May 8, 2007 3:04:53 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20977
- Location:
- trunk/src/VBox/Devices/PC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r2468 r2538 1288 1288 s->irr |= mask; 1289 1289 ioapic_service(s); 1290 #ifdef VBOX 1291 if ((level & PDM_IRQ_LEVEL_FLIP_FLOP) == PDM_IRQ_LEVEL_FLIP_FLOP) { 1292 s->irr &= ~mask; 1293 } 1294 #endif 1290 1295 } else { 1291 1296 s->irr &= ~mask; -
trunk/src/VBox/Devices/PC/DevPIC.cpp
r2269 r2538 353 353 DumpPICState(&pData->aPics[1], "picSetIrq"); 354 354 STAM_COUNTER_INC(&pData->CTXSUFF(StatSetIrq)); 355 pic_set_irq1(&pData->aPics[iIrq >> 3], iIrq & 7, iLevel );355 pic_set_irq1(&pData->aPics[iIrq >> 3], iIrq & 7, iLevel & PDM_IRQ_LEVEL_HIGH); 356 356 pic_update_irq(pData); 357 if ((iLevel & PDM_IRQ_LEVEL_FLIP_FLOP) == PDM_IRQ_LEVEL_FLIP_FLOP) 358 { 359 pic_set_irq1(&pData->aPics[iIrq >> 3], iIrq & 7, 0); 360 pic_update_irq(pData); 361 } 357 362 } 358 363
Note:
See TracChangeset
for help on using the changeset viewer.