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
Commits
73791bae
Commit
73791bae
authored
Jun 29, 2019
by
Eddie Hung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix tests
parent
b932966e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
3 deletions
+8
-3
architecture/synth_xilinx_srl/test17a.v
+1
-0
architecture/synth_xilinx_srl/test17b.v
+2
-1
architecture/synth_xilinx_srl/test17c.v
+1
-0
architecture/synth_xilinx_srl/test17d.v
+1
-0
architecture/synth_xilinx_srl/test17e.v
+2
-1
architecture/synth_xilinx_srl/test20.v
+1
-1
No files found.
architecture/synth_xilinx_srl/test17a.v
View file @
73791bae
// Check inference even when not in vector
(
*
top
*
)
module
test17a
(
input
clk
,
input
i
,
output
q
)
;
generate
reg
a1
,
a2
,
a3
,
a4
,
a5
,
a6
,
a7
,
a8
;
...
...
architecture/synth_xilinx_srl/test17b.v
View file @
73791bae
// Check inference even when not in vector
module
test17a
(
input
clk
,
input
i
,
input
e
,
output
q
)
;
(
*
top
*
)
module
test17b
(
input
clk
,
input
i
,
input
e
,
output
q
)
;
generate
reg
a1
,
a2
,
a3
,
a4
,
a5
,
a6
,
a7
,
a8
;
always
@
(
posedge
clk
)
if
(
e
)
{
a8
,
a7
,
a6
,
a5
,
a4
,
a3
,
a2
,
a1
}
<=
{
a7
,
a6
,
a5
,
a4
,
a3
,
a2
,
a1
,
i
};
...
...
architecture/synth_xilinx_srl/test17c.v
View file @
73791bae
// Check inference even when keep attribute specified
(
*
top
*
)
module
test17c
(
input
clk
,
input
i
,
input
e
,
output
q
)
;
generate
reg
a1
,
a2
,
a3
;
...
...
architecture/synth_xilinx_srl/test17d.v
View file @
73791bae
// Check inference even when keep attribute specified
(
*
top
*
)
module
test17d
(
input
clk
,
input
i
,
input
e
,
output
q
)
;
generate
reg
a1
,
a2
;
...
...
architecture/synth_xilinx_srl/test17e.v
View file @
73791bae
// Check inference even when keep attribute specified
module
test17d
(
input
clk
,
input
i
,
input
e
,
output
q
)
;
(
*
top
*
)
module
test17e
(
input
clk
,
input
i
,
input
e
,
output
q
)
;
generate
reg
a1
,
a2
;
(
*
blah
*
)
reg
a3
;
...
...
architecture/synth_xilinx_srl/test20.v
View file @
73791bae
...
...
@@ -24,4 +24,4 @@ endmodule
module
__
test
;
wire
[
4095
:
0
]
assert_area
=
"cd test20; select t:FD* -assert-count 0"
;
endmodule
`endi
`endi
f
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment