diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-01-21 22:11:43 -0300 |
|---|---|---|
| committer | Thog <me@thog.eu> | 2020-01-22 02:11:43 +0100 |
| commit | 532ccf929a5781668f8ae6c0552023909a771128 (patch) | |
| tree | 47102ca677ff0b05d3068c2dcf4ce94a88840a9e /Ryujinx.Graphics.Gpu/Engine/MethodFirmware.cs | |
| parent | d6b9babe1d73a78e963455a5a6ea3e7431a44ece (diff) | |
Ignore exit flag on branch delay slot (#899)
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Engine/MethodFirmware.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Engine/MethodFirmware.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Engine/MethodFirmware.cs b/Ryujinx.Graphics.Gpu/Engine/MethodFirmware.cs new file mode 100644 index 00000000..25a48af9 --- /dev/null +++ b/Ryujinx.Graphics.Gpu/Engine/MethodFirmware.cs @@ -0,0 +1,12 @@ +using Ryujinx.Graphics.Gpu.State; + +namespace Ryujinx.Graphics.Gpu.Engine +{ + partial class Methods + { + private void FirmwareCall4(GpuState state, int argument) + { + state.Write(0xd00, 1); + } + } +} |
