Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yosys-tests
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
yosys-tests
75f2fc0f9700b476576ddcf2fe234aa10f263947
75f2fc0f9700b476576ddcf2fe234aa10f263947
Switch branch/tag
yosys-tests
regression
issue_01047
top.v
Find file
Normal view
History
Permalink
top.v
98 Bytes
Edit
Newer
Older
Add new tests for closed issues
d05351de
SergeyDegtyar
committed
5 years ago
1
2
3
4
5
module
top
(
y
,
w
)
;
output
y
;
input
[
2
:
0
]
w
;
assign
y
=
1'b1
>>
(
w
*
(
3'b110
))
;
endmodule