aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Tests.Unicorn/Native/Const/Memory.cs
diff options
context:
space:
mode:
authorTSRBerry <20988865+TSRBerry@users.noreply.github.com>2023-02-09 02:24:32 +0100
committerGitHub <noreply@github.com>2023-02-09 02:24:32 +0100
commitec8d4f3af5d951776ab9d494ca1c5cae7809c08f (patch)
treed8d4d9deb25bbbea422ea5bc09a63dc31ed8dc1f /Ryujinx.Tests.Unicorn/Native/Const/Memory.cs
parentb3f0978869c7b621bf1c62ea6a8fc51f1e3a5c24 (diff)
Replace unicorn bindings with Nuget package (#4378)
* Replace unicorn bindings with Nuget package * Use nameof for ValueSource args * Remove redundant code from test projects * Fix wrong values for EmuStart() Add notes to address this later again * Improve formatting * Fix formatting/alignment issues
Diffstat (limited to 'Ryujinx.Tests.Unicorn/Native/Const/Memory.cs')
-rw-r--r--Ryujinx.Tests.Unicorn/Native/Const/Memory.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Ryujinx.Tests.Unicorn/Native/Const/Memory.cs b/Ryujinx.Tests.Unicorn/Native/Const/Memory.cs
deleted file mode 100644
index a7d60e61..00000000
--- a/Ryujinx.Tests.Unicorn/Native/Const/Memory.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-// Constants for Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT
-
-// ReSharper disable InconsistentNaming
-namespace Ryujinx.Tests.Unicorn.Native.Const
-{
- public enum Memory
- {
- READ = 16,
- WRITE = 17,
- FETCH = 18,
- READ_UNMAPPED = 19,
- WRITE_UNMAPPED = 20,
- FETCH_UNMAPPED = 21,
- WRITE_PROT = 22,
- READ_PROT = 23,
- FETCH_PROT = 24,
- READ_AFTER = 25,
- }
-}