diff --git a/ARMeilleure/ARMeilleure.csproj b/ARMeilleure/ARMeilleure.csproj index 153cfa5b5e..9268dcbee1 100644 --- a/ARMeilleure/ARMeilleure.csproj +++ b/ARMeilleure/ARMeilleure.csproj @@ -2,6 +2,7 @@ netcoreapp2.1 + win-x64;osx-x64;linux-x64 diff --git a/ARMeilleure/Memory/IMemoryManager.cs b/ARMeilleure/Memory/IMemoryManager.cs index dac712ceb4..bcee5db230 100644 --- a/ARMeilleure/Memory/IMemoryManager.cs +++ b/ARMeilleure/Memory/IMemoryManager.cs @@ -25,8 +25,6 @@ namespace ARMeilleure.Memory int AtomicDecrementInt32(long position); - V128 ReadVector128(long position); - byte[] ReadBytes(long position, long size); void ReadBytes(long position, byte[] data, int startIndex, int size); diff --git a/ARMeilleure/State/IExecutionContext.cs b/ARMeilleure/State/IExecutionContext.cs index 393bcd06e5..df91b7a1e7 100644 --- a/ARMeilleure/State/IExecutionContext.cs +++ b/ARMeilleure/State/IExecutionContext.cs @@ -29,10 +29,8 @@ namespace ARMeilleure.State void SetX(int index, ulong value); V128 GetV(int index); - void SetV(int index, V128 value); bool GetPstateFlag(PState flag); - void SetPstateFlag(PState flag, bool value); void RequestInterrupt(); }