Changeset 43387 in vbox for trunk/src/recompiler/VBoxREMWrapper.cpp
- Timestamp:
- Sep 21, 2012 9:40:25 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 80859
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxREMWrapper.cpp
r42420 r43387 205 205 #include <VBox/vmm/em.h> 206 206 #include <VBox/vmm/ssm.h> 207 #include <VBox/vmm/h waccm.h>207 #include <VBox/vmm/hm.h> 208 208 #include <VBox/vmm/patm.h> 209 209 #include <VBox/vmm/pdm.h> … … 670 670 { REMPARMDESC_FLAGS_INT, sizeof(RTGCPTR), NULL } 671 671 }; 672 static const REMPARMDESC g_aArgsH WACCMR3CanExecuteGuest[] =672 static const REMPARMDESC g_aArgsHMR3CanExecuteGuest[] = 673 673 { 674 674 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL }, … … 1239 1239 { "EMGetInhibitInterruptsPC", VMM_FN(EMGetInhibitInterruptsPC), &g_aArgsVMCPU[0], RT_ELEMENTS(g_aArgsVMCPU), REMFNDESC_FLAGS_RET_INT, sizeof(RTGCPTR), NULL }, 1240 1240 { "EMSetInhibitInterruptsPC", VMM_FN(EMSetInhibitInterruptsPC), &g_aArgsEMSetInhibitInterruptsPC[0], RT_ELEMENTS(g_aArgsEMSetInhibitInterruptsPC), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL }, 1241 { "H WACCMR3CanExecuteGuest", VMM_FN(HWACCMR3CanExecuteGuest), &g_aArgsHWACCMR3CanExecuteGuest[0], RT_ELEMENTS(g_aArgsHWACCMR3CanExecuteGuest), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },1241 { "HMR3CanExecuteGuest", VMM_FN(HMR3CanExecuteGuest), &g_aArgsHMR3CanExecuteGuest[0], RT_ELEMENTS(g_aArgsHMR3CanExecuteGuest), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL }, 1242 1242 { "IOMIOPortRead", VMM_FN(IOMIOPortRead), &g_aArgsIOMIOPortRead[0], RT_ELEMENTS(g_aArgsIOMIOPortRead), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL }, 1243 1243 { "IOMIOPortWrite", VMM_FN(IOMIOPortWrite), &g_aArgsIOMIOPortWrite[0], RT_ELEMENTS(g_aArgsIOMIOPortWrite), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },
Note:
See TracChangeset
for help on using the changeset viewer.