Changeset 44005 in vbox
- Timestamp:
- Dec 2, 2012 4:18:09 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82408
- Location:
- trunk/src/VBox/Devices/PC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r43974 r44005 164 164 165 165 #define DEBUG_APIC 166 167 /* APIC Local Vector Table */168 #define APIC_LVT_TIMER 0169 #define APIC_LVT_THERMAL 1170 #define APIC_LVT_PERFORM 2171 #define APIC_LVT_LINT0 3172 #define APIC_LVT_LINT1 4173 #define APIC_LVT_ERROR 5174 #define APIC_LVT_NB 6175 176 /* APIC delivery modes */177 #define APIC_DM_FIXED 0178 #define APIC_DM_LOWPRI 1179 #define APIC_DM_SMI 2180 #define APIC_DM_NMI 4181 #define APIC_DM_INIT 5182 #define APIC_DM_SIPI 6183 #define APIC_DM_EXTINT 7184 185 /* APIC destination mode */186 #define APIC_DESTMODE_FLAT 0xf187 #define APIC_DESTMODE_CLUSTER 0x0188 189 #define APIC_TRIGGER_EDGE 0190 #define APIC_TRIGGER_LEVEL 1191 192 #define APIC_LVT_TIMER_PERIODIC (1<<17)193 #define APIC_LVT_MASKED (1<<16)194 #define APIC_LVT_LEVEL_TRIGGER (1<<15)195 #define APIC_LVT_REMOTE_IRR (1<<14)196 #define APIC_INPUT_POLARITY (1<<13)197 #define APIC_SEND_PENDING (1<<12)198 166 199 167 #define ESR_ILLEGAL_ADDRESS (1 << 7) -
trunk/src/VBox/Devices/PC/DevApic.h
r44004 r44005 74 74 #define APIC_SEND_PENDING (1 << 12) 75 75 76 #endif /* ___PC_DevApic_h */76 #endif /* !___PC_DevApic_h */ 77 77
Note:
See TracChangeset
for help on using the changeset viewer.