Skip to content

Commit

Permalink
Merge branch 'master' into mips-pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
onsdagens authored Oct 12, 2024
2 parents 39591c3 + f595f09 commit 59353e3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
11 changes: 2 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,10 @@ To load and run the created model (`<example>.json`).
cargo run -- -model <example>.json
```

Alternatively, you can run the `mips` example from the `mips` folder.
Alternatively, you can run a single cycle `mips` model from the `mips-lib` folder.

```shell
cd mips
cargo run --example mips
```

And consequently run the created model (`mips.json`).

```shell
cd mips # if not already done
cd mips-lib
cargo run
```

Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions mips-lib/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
use clap::Parser;
// The trait impls from here are used dynamically when json is loaded, so this is actually used
#[allow(unused_imports)]
use mips_lib::*;
use std::path::PathBuf;
#[cfg(feature = "gui-egui")]
use syncrim::gui_egui::editor::Library;
Expand Down

0 comments on commit 59353e3

Please sign in to comment.