From ec8d4f3af5d951776ab9d494ca1c5cae7809c08f Mon Sep 17 00:00:00 2001 From: TSRBerry <20988865+TSRBerry@users.noreply.github.com> Date: Thu, 9 Feb 2023 02:24:32 +0100 Subject: 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 --- Ryujinx.Tests.Unicorn/Native/Const/Error.cs | 31 ----------------------------- 1 file changed, 31 deletions(-) delete mode 100644 Ryujinx.Tests.Unicorn/Native/Const/Error.cs (limited to 'Ryujinx.Tests.Unicorn/Native/Const/Error.cs') 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, - } -} -- cgit v1.2.3