Skip to content

Commit

Permalink
rv64: implement instructions sets I, Zifenci, Zicsr, M, A, F, D, B
Browse files Browse the repository at this point in the history
  • Loading branch information
soc committed Oct 14, 2023
1 parent be7d129 commit 148d41b
Show file tree
Hide file tree
Showing 9 changed files with 2,113 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[build]
target = "riscv64gc-unknown-linux-gnu"
#
#[target.aarch64-unknown-linux-gnu]
#linker = "aarch64-linux-gnu-gcc"
#
[target.riscv64gc-unknown-linux-gnu]
linker = "riscv64-linux-gnu-gcc"
1 change: 1 addition & 0 deletions dora-asm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use byteorder::{LittleEndian, WriteBytesExt};

pub mod arm64;
pub mod rv64;
pub mod x64;

use std::convert::TryInto;
Expand Down
Loading

0 comments on commit 148d41b

Please sign in to comment.