-
Notifications
You must be signed in to change notification settings - Fork 14
/
risc-v.fsproj
47 lines (41 loc) · 1.74 KB
/
risc-v.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>ISA.RISCV</RootNamespace>
<PackageId>ISA.RISC-V</PackageId>
<PackageVersion>0.1.0</PackageVersion>
<Title>RISC-V CPU</Title>
<Authors>mrLSD (Evgeny Ukhanov)</Authors>
<Description>RISC-V CPU formal implementation that implement basic RISC-V ISA: rv32i
Additionally it's possible to operate with CLI, reading ELF files and set verbosity output.</Description>
<Copyright>Evgeny Ukhanov</Copyright>
<PackageProjectUrl>https://github.com/mrLSD/riscv-fs</PackageProjectUrl>
<RepositoryUrl>https://github.com/mrLSD/riscv-fs</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ELFSharp" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<Compile Include="Bits.fs" />
<Compile Include="Arch.fs" />
<Compile Include="MachineState.fs" />
<Compile Include="DecodeI.fs" />
<Compile Include="DecodeI64.fs" />
<Compile Include="DecodeM.fs" />
<Compile Include="DecodeM64.fs" />
<Compile Include="DecodeA.fs" />
<Compile Include="DecodeA64.fs" />
<Compile Include="ExecuteI.fs" />
<Compile Include="ExecuteI64.fs" />
<Compile Include="ExecuteM.fs" />
<Compile Include="ExecuteM64.fs" />
<Compile Include="ExecuteA.fs" />
<Compile Include="ExecuteA64.fs" />
<Compile Include="Decoder.fs" />
<Compile Include="CLI.fs" />
<Compile Include="Run.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
</Project>