aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Tests.Unicorn/Native/Const/Error.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/Error.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/Error.cs')
-rw-r--r--Ryujinx.Tests.Unicorn/Native/Const/Error.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/Ryujinx.Tests.Unicorn/Native/Const/Error.cs b/Ryujinx.Tests.Unicorn/Native/Const/Error.cs
deleted file mode 100644
index 9cedb0fc..00000000
--- a/Ryujinx.Tests.Unicorn/Native/Const/Error.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-// Constants for Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT
-
-// ReSharper disable InconsistentNaming
-namespace Ryujinx.Tests.Unicorn.Native.Const
-{
- public enum Error
- {
- OK = 0,
- NOMEM = 1,
- ARCH = 2,
- HANDLE = 3,
- MODE = 4,
- VERSION = 5,
- READ_UNMAPPED = 6,
- WRITE_UNMAPPED = 7,
- FETCH_UNMAPPED = 8,
- HOOK = 9,
- INSN_INVALID = 10,
- MAP = 11,
- WRITE_PROT = 12,
- READ_PROT = 13,
- FETCH_PROT = 14,
- ARG = 15,
- READ_UNALIGNED = 16,
- WRITE_UNALIGNED = 17,
- FETCH_UNALIGNED = 18,
- HOOK_EXIST = 19,
- RESOURCE = 20,
- EXCEPTION = 21,
- }
-}