Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
sv2v
4e989bc02906e2c0798c29b0e2358302d9d03a75
4e989bc02906e2c0798c29b0e2358302d9d03a75
Switch branch/tag
sv2v
test
core
multipack_struct_cast.sv
Find file
Normal view
History
Permalink
multipack_struct_cast.sv
116 Bytes
Edit
Newer
Older
fix conversion of casts to structs containing multidimensional fields
5dcbce5f
Zachary Snow
committed
2 years ago
1
2
3
4
5
6
7
module
top
;
typedef
struct
packed
{
logic
[
2
][
3
]
x
;
}
S
;
S
s
;
initial
s
=
S
'
(
'1
)
;
endmodule