Skip to content

Commit

Permalink
Merge pull request #2765 from o1-labs/dw/o1vm/rename-resources-directory
Browse files Browse the repository at this point in the history
o1vm/riscv32: rename resources directory into riscv32im
  • Loading branch information
dannywillems authored Nov 20, 2024
2 parents e0dbf60 + 8a2d818 commit 25c2e8d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion o1vm/tests/test_elf_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
fn test_correctly_parsing_elf() {
let curr_dir = std::env::current_dir().unwrap();
let path = curr_dir.join(std::path::PathBuf::from(
"resources/programs/riscv32i/fibonacci",
"resources/programs/riscv32im/fibonacci",
));
let state = o1vm::elf_loader::parse_riscv32(&path).unwrap();

Expand Down
2 changes: 1 addition & 1 deletion o1vm/tests/test_riscv_elf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn test_instruction_can_be_converted_into_string() {
fn test_no_action() {
let curr_dir = std::env::current_dir().unwrap();
let path = curr_dir.join(std::path::PathBuf::from(
"resources/programs/riscv32i/no-action",
"resources/programs/riscv32im/no-action",
));
let state = o1vm::elf_loader::parse_riscv32(&path).unwrap();
let mut witness = Env::<Fp>::create(PAGE_SIZE.try_into().unwrap(), state);
Expand Down

0 comments on commit 25c2e8d

Please sign in to comment.