Skip to content

Commit 0e0110c

Browse files
authored
Add Sdtrig extension. (#183)
* Add Sdtrig extension. I need this for ACT support, because otherwise riscof fails to run altogether. * Red tape.
1 parent 437d7be commit 0e0110c

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## [3.20.0] - 2024-07-08
6+
- Add Sdtrig support
7+
58
## [3.19.0] - 2024-06-07 (WIP)
69
- added support for Zalasr unratified extesion
710
- isa\_string variable in debug spec now depends on the hartid (instead of always depending on

riscv_config/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from pkgutil import extend_path
22
__path__ = extend_path(__path__, __name__)
3-
__version__ = '3.19.0'
3+
__version__ = '3.20.0'

riscv_config/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"Zpn", "Zpsf"
3434
] + Zve_extensions + Zvl_extensions
3535

36-
S_extensions = ['Smrnmi','Smdbltrp', 'Ssdbltrp', 'Svnapot','Svadu', 'Sddbltrp', 'Sdext']
36+
S_extensions = ['Smrnmi','Smdbltrp', 'Ssdbltrp', 'Svnapot','Svadu', 'Sddbltrp', 'Sdext', 'Sdtrig']
3737

3838
sub_extensions = Z_extensions + S_extensions
3939

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.19.0
2+
current_version = 3.20.0
33
commit = True
44
tag = True
55

0 commit comments

Comments
 (0)