diff options
author | Jan Matyas <50193733+JanMatCodasip@users.noreply.github.com> | 2020-10-14 21:15:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-14 12:15:47 -0700 |
commit | e4f71addaa112f7890e5d9f89c3a088a2017731a (patch) | |
tree | c0efbd361fb806864eab6d8ba3bc93f7a0ad15a3 /parse_opcodes | |
parent | 3897514a4dca7ba10fd3bd3781dac545cd818773 (diff) | |
download | riscv-opcodes-e4f71addaa112f7890e5d9f89c3a088a2017731a.zip riscv-opcodes-e4f71addaa112f7890e5d9f89c3a088a2017731a.tar.gz riscv-opcodes-e4f71addaa112f7890e5d9f89c3a088a2017731a.tar.bz2 |
Adding four trigger CSRs to the list (#50)
Adding these four CSRs to parse_opcodes:
- 0x7a4 tinfo
- 0x7a5 tcontrol
- 0x7a8 mcontext
- 0x7aa scontext
Diffstat (limited to 'parse_opcodes')
-rwxr-xr-x | parse_opcodes | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/parse_opcodes b/parse_opcodes index 56833be..3c2b84b 100755 --- a/parse_opcodes +++ b/parse_opcodes @@ -221,6 +221,10 @@ csrs = [ (0x7a1, 'tdata1'), (0x7a2, 'tdata2'), (0x7a3, 'tdata3'), + (0x7a4, 'tinfo'), + (0x7a5, 'tcontrol'), + (0x7a8, 'mcontext'), + (0x7aa, 'scontext'), (0x7b0, 'dcsr'), (0x7b1, 'dpc'), (0x7b2, 'dscratch0'), |