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
35d7a11c
Commit
35d7a11c
authored
May 03, 2019
by
Eddie Hung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo
parent
e0de9e6a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
53 additions
and
6 deletions
+53
-6
architecture/synth_xilinx_srl/generate.py
+50
-3
architecture/synth_xilinx_srl/test7a.v
+1
-1
architecture/synth_xilinx_srl/test7c.v
+1
-1
architecture/synth_xilinx_srl/test8.v
+1
-1
No files found.
architecture/synth_xilinx_srl/generate.py
View file @
35d7a11c
...
...
@@ -13,7 +13,7 @@ generate
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'b1), .Q(int[w][
w
+1]));
\
$_DFFE_PP_ r(.C(clk), .D(int[w][d]), .E(1'b1), .Q(int[w][
d
+1]));
end
assign q[w] = int[w][depth];
end
...
...
@@ -32,7 +32,7 @@ generate
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(e), .Q(int[w][
w
+1]));
\
$_DFFE_PP_ r(.C(clk), .D(int[w][d]), .E(e), .Q(int[w][
d
+1]));
end
assign q[w] = int[w][depth];
end
...
...
@@ -77,7 +77,7 @@ generate
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_NP_ r(.C(clk), .D(int[w][d]), .E(1'b1), .Q(int[w][
w
+1]));
\
$_DFFE_NP_ r(.C(clk), .D(int[w][d]), .E(1'b1), .Q(int[w][
d
+1]));
end
assign q[w] = int[w][depth];
end
...
...
@@ -133,3 +133,50 @@ generate
endgenerate
endmodule
'''
.
format
(
i
))
# Test 10: pos_clk_no_enable_no_init_not_inferred_var_len
for
i
in
range
(
1
,
N
+
1
):
with
open
(
'test10_
%
d.v'
%
i
,
'w'
)
as
fp
:
fp
.
write
(
'''
module test10_{0} #(parameter width=1, depth={0}) (input clk, input [width-1:0] i, input [31:0] l, 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'b1), .Q(int[w][d+1]));
end
wire [depth-1:0] t;
assign t = int[w][depth:1];
assign q[w] = t[l];
end
endgenerate
endmodule
'''
.
format
(
i
))
# Test 11: neg_clk_with_enable_with_init_inferred_var_len
for
i
in
range
(
1
,
N
+
1
):
with
open
(
'test1_
%
d.v'
%
i
,
'w'
)
as
fp
:
fp
.
write
(
'''
module test11_{0} #(parameter width=1, depth={0}) (input clk, input [width-1:0] i, input e, input [31:0] l, 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) if (e) int[w] <= i[w];
assign q[w] = int[w];
end
else begin
always @(negedge clk) if (e) int[w] <= {{ int[w][depth-2:0], i[w] }};
assign q[w] = int[w][l];
end
end
endgenerate
endmodule
'''
.
format
(
i
))
architecture/synth_xilinx_srl/test7a.v
View file @
35d7a11c
...
...
@@ -7,7 +7,7 @@ generate
for
(
w
=
0
;
w
<
width
;
w
=
w
+
1
)
begin
assign
int
[
w
][
0
]
=
i
[
w
]
;
for
(
d
=
0
;
d
<
depth
;
d
=
d
+
1
)
begin
\
$
_
DFF_PP0_
r
(
.
C
(
clk
)
,
.
D
(
int
[
w
][
d
])
,
.
R
(
r
)
,
.
Q
(
int
[
w
][
w
+
1
]))
;
\
$
_
DFF_PP0_
r
(
.
C
(
clk
)
,
.
D
(
int
[
w
][
d
])
,
.
R
(
r
)
,
.
Q
(
int
[
w
][
d
+
1
]))
;
end
assign
q
[
w
]
=
int
[
w
][
depth
]
;
end
...
...
architecture/synth_xilinx_srl/test7c.v
View file @
35d7a11c
...
...
@@ -7,7 +7,7 @@ generate
for
(
w
=
0
;
w
<
width
;
w
=
w
+
1
)
begin
assign
int
[
w
][
0
]
=
i
[
w
]
;
for
(
d
=
0
;
d
<
depth
;
d
=
d
+
1
)
begin
\
$
_
DFF_PP0_
r
(
.
C
(
clk
)
,
.
D
(
int
[
w
][
d
])
,
.
R
(
r
)
,
.
Q
(
int
[
w
][
w
+
1
]))
;
\
$
_
DFF_PP0_
r
(
.
C
(
clk
)
,
.
D
(
int
[
w
][
d
])
,
.
R
(
r
)
,
.
Q
(
int
[
w
][
d
+
1
]))
;
end
wire
[
depth
-
1
:
0
]
t
;
assign
t
=
int
[
w
][
depth
:
1
]
;
...
...
architecture/synth_xilinx_srl/test8.v
View file @
35d7a11c
...
...
@@ -7,7 +7,7 @@ generate
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
]))
;
\
$
_
DFFE_PP_
r
(
.
C
(
clk
)
,
.
D
(
int
[
w
][
d
])
,
.
E
(
1'b0
)
,
.
Q
(
int
[
w
][
d
+
1
]))
;
end
assign
q
[
w
]
=
int
[
w
][
depth
]
;
end
...
...
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