index
:
trve.git
main
Taitep's RISC-V Emulator
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
instructions.rs
Age
Commit message (
Collapse
)
Author
2025-12-27
Implement ECALL and EBREAK, the final RV64I instructions!
taitep
2025-12-27
Add exception values (what will go in mtval/stval)
taitep
2025-12-27
Initial FENCE implementation
taitep
2025-12-27
Relicense to BSD 2-Clause to align better with the RISC-V community
taitep
2025-12-26
Make macros for R/I-type operations and use them to implement basically ↵
taitep
every single one i think
2025-12-26
Make branches macros and implement all of them
taitep
2025-12-26
(BIG CHANGE) memory handling has changed, MMIO is now a 2 level page table, ↵
taitep
misaligned access supported, addresses not internally split to page and offset immediately, all load/store instructions implemented. Might still have bugs
2025-12-24
EXCEPTION SYSTEM (initial version - may change later)
taitep
2025-12-23
Implement SRLI
taitep
2025-12-23
Implement SH
taitep
2025-12-23
Implement BLT
taitep
2025-12-22
Implement LW
taitep
2025-12-22
Implement BLTU
taitep
2025-12-22
Implement LH
taitep
2025-12-22
Implement BGEU
taitep
2025-12-22
Implement SW
taitep
2025-12-22
Implement SUB
taitep
2025-12-22
Implement OR
taitep
2025-12-22
Implement AND and improve formatting and ordering in rvi.rs
taitep
2025-12-22
Implement ADD
taitep
2025-12-21
Implement LD and BNE
taitep
2025-12-21
Implement JALR, fix JAL, change how some stuff in instructions.rs is expressed
taitep
2025-12-21
Implement AUIPC
taitep
2025-12-21
Implement ANDI and BEQ
taitep
2025-12-21
Implement LB and LBU
taitep
2025-12-21
Implement SB
taitep
2025-12-21
Implement SLLI and fix sign extension of immediates for I-type and S-type ↵
taitep
instructions
2025-12-21
Add JAL and change some of the formatting on previous instructions to be cleaner
taitep
2025-12-21
(BIG CHANGE) Switch instruction identification/execution to use a plain ↵
taitep
match tree, should improve performance by quite a bit
2025-12-01
Add license/copyright notices to top of each source file (where applicable)
taitep
2025-10-07
FIRST INSTRUCTION WORKING
taitep
2025-10-04
I guess its a working execution loop?
taitep
2025-10-03
Swap out execution status for instructions returning an InstructionResult
taitep
2025-09-30
Initial instruction execution code i guess
taitep