forked from openhwgroup/cva6
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openhwgroup#1765 from zchamski/cvvdev/dev/verilato…
…r-v5 Switch Verilator testing to use v5.008 instead of v4.110
- Loading branch information
Showing
6 changed files
with
145 additions
and
36 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
diff --git a/docs/CONTRIBUTORS b/docs/CONTRIBUTORS | ||
index 215fb6bd8..829752e6b 100644 | ||
--- a/docs/CONTRIBUTORS | ||
+++ b/docs/CONTRIBUTORS | ||
@@ -154,5 +154,6 @@ Yuri Victorovich | ||
Yutetsu TAKATSUKASA | ||
Yu-Sheng Lin | ||
Yves Mathieu | ||
+Zbigniew Chamski | ||
Zhanglei Wang | ||
Zixi Li | ||
diff --git a/include/verilated_types.h b/include/verilated_types.h | ||
index cb7265e32..f1d482d8e 100644 | ||
--- a/include/verilated_types.h | ||
+++ b/include/verilated_types.h | ||
@@ -1012,8 +1012,8 @@ struct VlUnpacked final { | ||
|
||
// METHODS | ||
// Raw access | ||
- WData* data() { return &m_storage[0]; } | ||
- const WData* data() const { return &m_storage[0]; } | ||
+ WData* data() { return (WData*)&m_storage[0]; } | ||
+ const WData* data() const { return (const WData*)&m_storage[0]; } | ||
|
||
T_Value& operator[](size_t index) { return m_storage[index]; } | ||
const T_Value& operator[](size_t index) const { return m_storage[index]; } |
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