Changeset 92465 in vbox for trunk/include
- Timestamp:
- Nov 17, 2021 3:01:09 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148324
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/nem.h
r92449 r92465 100 100 void *pvRam, void *pvMmio2, uint32_t *puNemRange); 101 101 VMMR3_INT_DECL(int) NEMR3NotifyPhysMmioExUnmap(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, uint32_t fFlags, 102 void *pvRam, void *pvMmio2, uint8_t *pu2State );102 void *pvRam, void *pvMmio2, uint8_t *pu2State, uint32_t *puNemRange); 103 103 /** @name Flags for NEMR3NotifyPhysMmioExMap and NEMR3NotifyPhysMmioExUnmap. 104 104 * @{ */ … … 127 127 * @param fFlags NEM_NOTIFY_PHYS_ROM_F_XXX. 128 128 * @param pu2State New page state or UINT8_MAX to leave as-is. 129 * @param puNemRange Access to the relevant PGMRAMRANGE::uNemRange field. 129 130 */ 130 131 VMMR3_INT_DECL(int) NEMR3NotifyPhysRomRegisterEarly(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, void *pvPages, 131 uint32_t fFlags, uint8_t *pu2State );132 uint32_t fFlags, uint8_t *pu2State, uint32_t *puNemRange); 132 133 133 134 /** … … 145 146 * @param pu2State Where to return the new NEM page state, UINT8_MAX 146 147 * for unchanged. 148 * @param puNemRange Access to the relevant PGMRAMRANGE::uNemRange field. 147 149 */ 148 150 VMMR3_INT_DECL(int) NEMR3NotifyPhysRomRegisterLate(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, void *pvPages, 149 uint32_t fFlags, uint8_t *pu2State );151 uint32_t fFlags, uint8_t *pu2State, uint32_t *puNemRange); 150 152 151 153 /** @name Flags for NEMR3NotifyPhysRomRegisterEarly and NEMR3NotifyPhysRomRegisterLate. -
trunk/include/VBox/vmm/vm.h
r92408 r92465 1346 1346 struct NEM s; 1347 1347 #endif 1348 uint8_t padding[ 512]; /* multiple of 64 */1348 uint8_t padding[4608]; /* multiple of 64 */ 1349 1349 } nem; 1350 1350 -
trunk/include/VBox/vmm/vm.mac
r92408 r92465 149 149 .em resb 256 150 150 alignb 64 151 .nem resb 512151 .nem resb 4608 152 152 alignb 64 153 153 .tm resb 10112
Note:
See TracChangeset
for help on using the changeset viewer.