Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added printing for xTIDC registers #47

Merged
merged 1 commit into from
May 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/RISCV/RV32_Xcheri.hs
Original file line number Diff line number Diff line change
Expand Up @@ -310,14 +310,17 @@ pretty_cspecialrw instr idx cs1 cd =
concat [instr, " ", reg cd, ", ", name_scr idx, ", ", reg cs1]
where name_scr 0 = "pcc"
name_scr 1 = "ddc"
name_scr 3 = "utidc"
name_scr 4 = "utcc"
name_scr 5 = "utdc"
name_scr 6 = "uscratchc"
name_scr 7 = "uepcc"
name_scr 11 = "stidc"
name_scr 12 = "stcc"
name_scr 13 = "stdc"
name_scr 14 = "sscratchc"
name_scr 15 = "sepcc"
name_scr 27 = "mtidc"
name_scr 28 = "mtcc"
name_scr 29 = "mtdc"
name_scr 30 = "mscratchc"
Expand Down
Loading