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
e0de9e6a
Commit
e0de9e6a
authored
May 03, 2019
by
Eddie Hung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test8, test9
parent
68cb2aae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
0 deletions
+37
-0
architecture/synth_xilinx_srl/test8.v
+15
-0
architecture/synth_xilinx_srl/test9.v
+22
-0
No files found.
architecture/synth_xilinx_srl/test8.v
0 → 100644
View file @
e0de9e6a
// Check multi-bit works
// pos_clk_no_enable_no_init_not_inferred_N_width
module
test8
#(
parameter
width
=
130
,
depth
=
130
)
(
input
clk
,
input
[
width
-
1
:
0
]
i
,
output
[
width
-
1
:
0
]
q
)
;
generate
wire
[
depth
:
0
]
int
[
width
-
1
:
0
]
;
genvar
w
,
d
;
for
(
w
=
0
;
w
<
width
;
w
=
w
+
1
)
begin
assign
int
[
w
][
0
]
=
i
[
w
]
;
for
(
d
=
0
;
d
<
depth
;
d
=
d
+
1
)
begin
\
$
_
DFFE_PP_
r
(
.
C
(
clk
)
,
.
D
(
int
[
w
][
d
])
,
.
E
(
1'b0
)
,
.
Q
(
int
[
w
][
w
+
1
]))
;
end
assign
q
[
w
]
=
int
[
w
][
depth
]
;
end
endgenerate
endmodule
architecture/synth_xilinx_srl/test9.v
0 → 100644
View file @
e0de9e6a
// Check multi-bit works
// neg_clk_no_enable_with_init_with_inferred_N_width
module
test9
#(
parameter
width
=
130
,
depth
=
130
)
(
input
clk
,
input
[
width
-
1
:
0
]
i
,
output
[
width
-
1
:
0
]
q
)
;
generate
reg
[
depth
-
1
:
0
]
int
[
width
-
1
:
0
]
;
genvar
w
,
d
;
for
(
w
=
0
;
w
<
width
;
w
=
w
+
1
)
begin
for
(
d
=
0
;
d
<
depth
;
d
=
d
+
1
)
initial
int
[
w
][
d
]
<=
~
((
d
+
w
)
%
2
)
;
if
(
depth
==
1
)
begin
always
@
(
negedge
clk
)
int
[
w
]
<=
i
[
w
]
;
assign
q
[
w
]
=
int
[
w
]
;
end
else
begin
always
@
(
negedge
clk
)
int
[
w
]
<=
{
int
[
w
][
depth
-
2
:
0
]
,
i
[
w
]
};
assign
q
[
w
]
=
int
[
w
][
depth
-
1
]
;
end
end
endgenerate
endmodule
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