diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-08-02 22:36:57 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-03 03:36:57 +0200 |
| commit | 60db4c353099e8656a330ede03fdbe57a421fa47 (patch) | |
| tree | 0b04b6fff7c892b7ae9f1d417293d4f81b27a60a /Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs | |
| parent | c11855565e0ce2bac228610cbaa92c8c7f082c70 (diff) | |
Implement a Macro JIT (#1445)
* Implement a Macro JIT
* Nit: space
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs b/Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs new file mode 100644 index 00000000..dc336026 --- /dev/null +++ b/Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs @@ -0,0 +1,17 @@ +namespace Ryujinx.Graphics.Gpu.Engine.MME +{ + /// <summary> + /// GPU Macro assignment operation. + /// </summary> + enum AssignmentOperation + { + IgnoreAndFetch = 0, + Move = 1, + MoveAndSetMaddr = 2, + FetchAndSend = 3, + MoveAndSend = 4, + FetchAndSetMaddr = 5, + MoveAndSetMaddrThenFetchAndSend = 6, + MoveAndSetMaddrThenSendHigh = 7 + } +} |
