Skip to content

Commit

Permalink
Merge pull request #8 from howjmay/basic
Browse files Browse the repository at this point in the history
refactor: Rename emurv to riscland
  • Loading branch information
howjmay committed Feb 23, 2024
2 parents 33b3e94 + 14c30b6 commit 6030144
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
- name: run tests
run: |
cargo test --package emurv --test cpu_test -- tests --nocapture
cargo test --package riscland --test cpu_test -- tests --nocapture
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "emurv"
name = "riscland"
version = "0.1.0"
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# emurv
# riscland
A simple riscv emulator in rust
2 changes: 1 addition & 1 deletion tests/cpu_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mod helper;
#[cfg(test)]
mod tests {
use crate::helper;
use emurv::{cpu, memory::MEM_BASE, opcode::*};
use riscland::{cpu, memory::MEM_BASE, opcode::*};

#[test]
fn test_exec_lui() {
Expand Down
2 changes: 1 addition & 1 deletion tests/helper.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use emurv::{
use riscland::{
cpu,
opcode::{ADDI, B_TYPE, I_TYPE, LOAD, LUI, R_TYPE, S_TYPE},
};
Expand Down

0 comments on commit 6030144

Please sign in to comment.