Add runtime identifiers on the ARMeilleure project

This commit is contained in:
gdkchan 2019-08-01 18:19:58 -03:00
parent 15dc188dc4
commit 8d7adc7be7
3 changed files with 1 additions and 4 deletions

View file

@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

View file

@ -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);

View file

@ -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();
}