Changeset 4787 in vbox for trunk/src/VBox/Devices/PC/DevPit-i8254.cpp
- Timestamp:
- Sep 14, 2007 9:08:56 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPit-i8254.cpp
r4431 r4787 79 79 { 80 80 /** Pointer to the instance data - HCPtr. */ 81 HCPTRTYPE(struct PITState *)pPitHC;81 R3R0PTRTYPE(struct PITState *) pPitHC; 82 82 /** The timer - HCPtr. */ 83 PTMTIMERHCpTimerHC;83 R3R0PTRTYPE(PTMTIMER) pTimerHC; 84 84 /** Pointer to the instance data - GCPtr. */ 85 GCPTRTYPE(struct PITState *) pPitGC;85 GCPTRTYPE(struct PITState *) pPitGC; 86 86 /** The timer - HCPtr. */ 87 PTMTIMERGC pTimerGC;87 PTMTIMERGC pTimerGC; 88 88 /** The virtual time stamp at the last reload. (only used in mode 2 for now) */ 89 uint64_t u64ReloadTS;89 uint64_t u64ReloadTS; 90 90 /** The actual time of the next tick. 91 91 * As apposed to the next_transition_time which contains the correct time of the next tick. */ 92 uint64_t u64NextTS;92 uint64_t u64NextTS; 93 93 94 94 /** (count_load_time is only set by TMTimerGet() which returns uint64_t) */ … … 129 129 #endif 130 130 /** Pointer to the device instance. */ 131 HCPTRTYPE(PPDMDEVINS) pDevIns;131 R3PTRTYPE(PPDMDEVINS) pDevIns; 132 132 #if HC_ARCH_BITS == 32 133 133 uint32_t Alignment0;
Note:
See TracChangeset
for help on using the changeset viewer.