-
Notifications
You must be signed in to change notification settings - Fork 4
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
Rdformat test #102
Rdformat test #102
Conversation
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Tests of cast operations
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Add main.cpp file to array-copy test
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Add EnumConcatenatedConst test
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Add ReturnFunctionCall test
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Fix StreamOp test
Add FunctionWithoutReturn test
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Add test of rv_dm module
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Add tests of patterns as localparams values
Signed-off-by: Ryszard Różak <[email protected]>
Signed-off-by: Ryszard Różak <[email protected]>
Add BindModule test
Add 2DeclarationsInFor test
Interface statements
Signed-off-by: Ryszard Różak <[email protected]>
Add TypedefOnFileLevel test
This reverts commit 9d5b717.
tests/chapter-8/8.5--properties.sv
Outdated
:tags: 8.5 | ||
:type: simulation parsing | ||
*/ | ||
module class_tb (); |
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.
Declared module does not match the first dot-delimited component of file name: "8"
tests/chapter-8/8.5--properties.sv
Outdated
:type: simulation parsing | ||
*/ | ||
module class_tb (); | ||
class test_cls; |
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.
Use spaces, not tabs.
tests/chapter-8/8.5--properties.sv
Outdated
*/ | ||
module class_tb (); | ||
class test_cls; | ||
int a; |
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.
Use spaces, not tabs.
tests/chapter-8/8.5--properties.sv
Outdated
module class_tb (); | ||
class test_cls; | ||
int a; | ||
endclass |
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.
Use spaces, not tabs.
tests/chapter-8/8.5--properties.sv
Outdated
int a; | ||
endclass | ||
|
||
test_cls test_obj; |
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.
Use spaces, not tabs.
typedef enum {A = 10, B = 20, C = 30, D = 1} e_type; | ||
endclass | ||
|
||
test_cls test_obj; |
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.
Use spaces, not tabs.
|
||
test_cls test_obj; | ||
|
||
initial begin |
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.
Use spaces, not tabs.
test_cls test_obj; | ||
|
||
initial begin | ||
test_obj = new; |
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.
Use spaces, not tabs.
|
||
initial begin | ||
test_obj = new; | ||
$display(test_obj.C); |
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.
Use spaces, not tabs.
initial begin | ||
test_obj = new; | ||
$display(test_obj.C); | ||
end |
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.
Use spaces, not tabs.
No description provided.