- Timestamp:
- Jan 18, 2007 2:12:31 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/src/recompiler/new/VBoxREMWrapper.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/new/VBoxREMWrapper.cpp
r1 r133 140 140 * anything. But but MSC code is calling GCC code, we'll have to save esi and edi. 141 141 * 142 *143 142 */ 144 143 … … 316 315 static DECLCALLBACKPTR(void, pfnREMR3A20Set)(PVM, bool); 317 316 static DECLCALLBACKPTR(void, pfnREMR3ReplayInvalidatedPages)(PVM); 317 static DECLCALLBACKPTR(void, pfnREMR3ReplayHandlerNotifications)(PVM pVM); 318 318 static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysRamRegister)(PVM, RTGCPHYS, RTUINT, void *, unsigned); 319 319 static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysReserve)(PVM, RTGCPHYS, RTUINT); … … 851 851 { "REMR3A20Set", (void *)&pfnREMR3A20Set, &g_aArgsA20Set[0], ELEMENTS(g_aArgsA20Set), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 852 852 { "REMR3ReplayInvalidatedPages", (void *)&pfnREMR3ReplayInvalidatedPages, &g_aArgsVM[0], ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 853 { "REMR3ReplayHandlerNotifications", (void *)&pfnREMR3ReplayHandlerNotifications, &g_aArgsVM[0], ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 853 854 { "REMR3NotifyPhysRamRegister", (void *)&pfnREMR3NotifyPhysRamRegister, &g_aArgsNotifyPhysRamRegister[0], ELEMENTS(g_aArgsNotifyPhysRamRegister), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 854 855 { "REMR3NotifyPhysReserve", (void *)&pfnREMR3NotifyPhysReserve, &g_aArgsNotifyPhysReserve[0], ELEMENTS(g_aArgsNotifyPhysReserve), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, … … 1645 1646 } 1646 1647 1648 REMR3DECL(void) REMR3ReplayHandlerNotifications(PVM pVM) 1649 { 1650 #ifndef USE_REM_STUBS 1651 Assert(VALID_PTR(pfnREMR3ReplayHandlerNotifications)); 1652 pfnREMR3ReplayHandlerNotifications(pVM); 1653 #endif 1654 } 1655 1647 1656 REMR3DECL(int) REMR3NotifyCodePageChanged(PVM pVM, RTGCPTR pvCodePage) 1648 1657 {
Note:
See TracChangeset
for help on using the changeset viewer.

