-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Deal with signed imm values outside of constraints * SH virtual sequence * Add memory-ops example * Fix SH virtual sequence * SB virtual sequence * Add LBU, LHU, LB, LH virtual sequences * Add AssertAlignedMemoryAccessInstruction and LowBitSubtable * Switch to word-addressable memory in read_write_memory.rs * Update constraints and remove SWInstruction lookup * Assert word alignment for LW and SW * rename load/store instruction lookups * cargo update * clippy
- Loading branch information
1 parent
ded4fcd
commit dd9e5c4
Showing
51 changed files
with
3,519 additions
and
2,174 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
pub fn to_ram_address(index: usize) -> usize { | ||
index * constants::BYTES_PER_INSTRUCTION + constants::RAM_START_ADDRESS as usize | ||
} | ||
|
||
pub mod attributes; | ||
pub mod constants; | ||
pub mod parallel; | ||
pub mod rv_trace; | ||
pub mod serializable; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.