Ignore exit flag on branch delay slot (#899)
This commit is contained in:
parent
d6b9babe1d
commit
532ccf929a
5 changed files with 42 additions and 1 deletions
|
@ -93,6 +93,16 @@ namespace Ryujinx.Graphics.Gpu.State
|
|||
return _backingMemory[offset];
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Writes data to the GPU register at the given offset.
|
||||
/// </summary>
|
||||
/// <param name="offset">Offset to be written</param>
|
||||
/// <param name="value">Value to be written</param>
|
||||
public void Write(int offset, int value)
|
||||
{
|
||||
_backingMemory[offset] = value;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Writes an offset value at the uniform buffer offset register.
|
||||
/// </summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue