N64: Hooked up the system bus domain.

This commit is contained in:
pjgat09 2014-09-08 22:31:51 +00:00
parent 8a36049b81
commit a8684c34a6
2 changed files with 3 additions and 0 deletions

View File

@ -491,6 +491,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64.NativeApi
m64pSetWriteCallback = (SetWriteCallback)Marshal.GetDelegateForFunctionPointer(GetProcAddress(CoreDll, "SetWriteCallback"), typeof(SetWriteCallback));
m64pGetRegisters = (GetRegisters)Marshal.GetDelegateForFunctionPointer(GetProcAddress(CoreDll, "GetRegisters"), typeof(GetRegisters));
m64p_read_memory_8 = (biz_read_memory)Marshal.GetDelegateForFunctionPointer(GetProcAddress(CoreDll, "biz_read_memory"), typeof(biz_read_memory));
m64p_write_memory_8 = (biz_write_memory)Marshal.GetDelegateForFunctionPointer(GetProcAddress(CoreDll, "biz_write_memory"), typeof(biz_write_memory));
}
/// <summary>

Binary file not shown.