-
Notifications
You must be signed in to change notification settings - Fork 53
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
Remove unused parameter DEBUG_TRIGGER_EN. Add explicit parameter types. #826
Remove unused parameter DEBUG_TRIGGER_EN. Add explicit parameter types. #826
Conversation
Part of fix for openhwgroup#676 Signed-off-by: Oivind Ekelund <[email protected]>
bhv/cv32e40x_sim_clock_gate.sv
Outdated
@@ -14,7 +14,7 @@ | |||
|
|||
module cv32e40x_clock_gate | |||
#( | |||
parameter LIB = 0 | |||
parameter int LIB = 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we should change the type of LIB
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
bhv/cv32e40x_wrapper.sv
Outdated
@@ -50,7 +50,7 @@ | |||
module cv32e40x_wrapper | |||
import cv32e40x_pkg::*; | |||
#( | |||
parameter LIB = 0, | |||
parameter int LIB = 0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated.
rtl/cv32e40x_sleep_unit.sv
Outdated
@@ -42,7 +42,7 @@ | |||
|
|||
module cv32e40x_sleep_unit import cv32e40x_pkg::*; | |||
#( | |||
parameter LIB = 0 | |||
parameter int LIB = 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated.
rtl/cv32e40x_core.sv
Outdated
@@ -31,7 +31,7 @@ | |||
|
|||
module cv32e40x_core import cv32e40x_pkg::*; | |||
#( | |||
parameter LIB = 0, | |||
parameter int LIB = 0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No type
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated.
Signed-off-by: Oivind Ekelund <[email protected]>
Part of fix for #676