forked from MeloNX/MeloNX
fix arm jit rebase
This commit is contained in:
parent
956c5fe4fd
commit
ba3438f24a
@ -12,7 +12,7 @@ namespace Ryujinx.Cpu.LightningJit
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
public ICpuContext CreateCpuContext(IMemoryManager memoryManager, bool for64Bit)
|
||||
public ICpuContext CreateCpuContext(ICpuMemoryManager memoryManager, bool for64Bit)
|
||||
{
|
||||
return new LightningJitCpuContext(_tickSource, memoryManager, for64Bit);
|
||||
}
|
||||
|
@ -136,5 +136,9 @@ namespace Ryujinx.Cpu.Nce
|
||||
public void PrepareCodeRange(ulong address, ulong size)
|
||||
{
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -16,6 +16,7 @@ namespace Ryujinx.Cpu.Nce
|
||||
}
|
||||
|
||||
public void Commit(ulong offset, ulong size) => _impl.Commit(offset, size);
|
||||
public void MapAsRw(ulong offset, ulong size) => _impl.Reprotect(offset, size, MemoryPermission.ReadAndWrite);
|
||||
public void MapAsRx(ulong offset, ulong size) => _impl.Reprotect(offset, size, MemoryPermission.ReadAndExecute);
|
||||
public void MapAsRwx(ulong offset, ulong size) => _impl.Reprotect(offset, size, MemoryPermission.ReadWriteExecute);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user