Changeset 24195 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Oct 30, 2009 2:32:56 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r24193 r24195 1012 1012 Assert(u8Pin == 0); /* PIC should be wired to LINT0. */ 1013 1013 enmType = PDMAPICIRQ_EXTINT; 1014 break; 1014 /* ExtINT can be both set and cleared, NMI/SMI/INIT can only be set. */ 1015 LogFlow(("apicLocalInterrupt: %s ExtINT interrupt\n", u8Level ? "setting" : "clearing")); 1016 if (u8Level) 1017 cpuSetInterrupt(dev, s, enmType); 1018 else 1019 cpuClearInterrupt(dev, s, enmType); 1020 return VINF_SUCCESS; 1015 1021 case APIC_DM_NMI: 1016 1022 Assert(u8Pin == 1); /* NMI should be wired to LINT1. */
Note:
See TracChangeset
for help on using the changeset viewer.