Exemplo n.º 1
0
//////////
//
// Called to load the VVMOSS.DLL stuff, following the startup protocol.
//
//////
	bool ivvm_loadAndInitializeVvmmc(void)
	{
		// Load the DLL
		if (!iLoadVvmmcFunctionsFromDll())
			return(false);

		// Let it initialize itself
		mc_firstCallback((u64)&vvm_debuggerInterfaceCallback);
		mc_bootstrapInitialization((u64)&vvm_debuggerInterfaceCallback);

		// We're good
		return(true);
	}
Exemplo n.º 2
0
//////////
//
// Called to load the MC.DLL stuff, following the startup protocol.
//
//////
	bool ivasm_loadAndInitializeMc(void)
	{
		// Load the DLL
		if (!iLoadMcFunctionsFromDll())
			return(false);

		// Let it initialize itself
		mc_firstCallback(0);
		mc_bootstrapInitialization();

		// We're good
		return(true);
	}