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
6d4b3907
Commit
6d4b3907
authored
Mar 14, 2019
by
Eddie Hung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More tests for inferred SRLs with INIT
parent
9826b48d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
24 deletions
+57
-24
architecture/synth_xilinx_srl/testbench.v
+12
-4
architecture/synth_xilinx_srl/top.v
+45
-20
No files found.
architecture/synth_xilinx_srl/testbench.v
View file @
6d4b3907
...
@@ -18,8 +18,8 @@ module testbench;
...
@@ -18,8 +18,8 @@ module testbench;
reg
[
`N
-
1
:
0
]
a
;
reg
[
`N
-
1
:
0
]
a
;
reg
e
;
reg
e
;
wire
[
`N
-
1
:
0
]
y1
,
y2
,
y3
,
y4
;
wire
[
`N
-
1
:
0
]
y1
,
y2
,
y3
,
y4
,
y5
,
y6
;
wire
[
`N
-
1
:
0
]
z1
,
z2
,
z3
,
z4
;
wire
[
`N
-
1
:
0
]
z1
,
z2
,
z3
,
z4
,
z5
,
z6
;
top
rtl
(
top
rtl
(
.
clk
(
clk
)
,
.
clk
(
clk
)
,
...
@@ -28,7 +28,9 @@ module testbench;
...
@@ -28,7 +28,9 @@ module testbench;
.
z1
(
y1
)
,
.
z1
(
y1
)
,
.
z2
(
y2
)
,
.
z2
(
y2
)
,
.
z3
(
y3
)
,
.
z3
(
y3
)
,
.
z4
(
y4
)
.
z4
(
y4
)
,
.
z5
(
y5
)
,
.
z6
(
y6
)
)
;
)
;
synth
uut
(
synth
uut
(
...
@@ -38,7 +40,9 @@ module testbench;
...
@@ -38,7 +40,9 @@ module testbench;
.
z1
(
z1
)
,
.
z1
(
z1
)
,
.
z2
(
z2
)
,
.
z2
(
z2
)
,
.
z3
(
z3
)
,
.
z3
(
z3
)
,
.
z4
(
z4
)
.
z4
(
z4
)
,
.
z5
(
z5
)
,
.
z6
(
z6
)
)
;
)
;
always
@
(
negedge
clk
)
always
@
(
negedge
clk
)
...
@@ -57,6 +61,10 @@ module testbench;
...
@@ -57,6 +61,10 @@ module testbench;
assert_dff
z3n_test
(
.
clk
(
~
clk
)
,
.
test
(
z3
[
i
])
,
.
pat
(
y3
[
i
]))
;
assert_dff
z3n_test
(
.
clk
(
~
clk
)
,
.
test
(
z3
[
i
])
,
.
pat
(
y3
[
i
]))
;
assert_dff
z4p_test
(
.
clk
(
clk
)
,
.
test
(
z4
[
i
])
,
.
pat
(
y4
[
i
]))
;
assert_dff
z4p_test
(
.
clk
(
clk
)
,
.
test
(
z4
[
i
])
,
.
pat
(
y4
[
i
]))
;
assert_dff
z4n_test
(
.
clk
(
~
clk
)
,
.
test
(
z4
[
i
])
,
.
pat
(
y4
[
i
]))
;
assert_dff
z4n_test
(
.
clk
(
~
clk
)
,
.
test
(
z4
[
i
])
,
.
pat
(
y4
[
i
]))
;
assert_dff
z5p_test
(
.
clk
(
clk
)
,
.
test
(
z5
[
i
])
,
.
pat
(
y5
[
i
]))
;
assert_dff
z5n_test
(
.
clk
(
~
clk
)
,
.
test
(
z5
[
i
])
,
.
pat
(
y5
[
i
]))
;
assert_dff
z6p_test
(
.
clk
(
clk
)
,
.
test
(
z6
[
i
])
,
.
pat
(
y6
[
i
]))
;
assert_dff
z6n_test
(
.
clk
(
~
clk
)
,
.
test
(
z6
[
i
])
,
.
pat
(
y6
[
i
]))
;
end
end
endgenerate
endgenerate
...
...
architecture/synth_xilinx_srl/top.v
View file @
6d4b3907
`include
"defines.vh"
`include
"defines.vh"
module
template
(
input
clk
,
input
a
,
input
e
,
output
z
)
;
module
template
(
input
clk
,
input
a
,
input
e
,
output
z
)
;
parameter
i
cell
=
1
;
parameter
i
nferred
=
0
;
parameter
init
=
0
;
parameter
init
=
0
;
parameter
neg_clk
=
0
;
parameter
neg_clk
=
0
;
parameter
len
=
0
;
parameter
len
=
1
;
generate
generate
if
(
i
cell
==
1
)
begin
if
(
i
nferred
==
0
)
begin
wire
[
len
:
0
]
int
;
wire
[
len
:
0
]
int
;
assign
int
[
0
]
=
a
;
assign
int
[
0
]
=
a
;
genvar
i
;
genvar
i
;
for
(
i
=
0
;
i
<
len
;
i
=
i
+
1
)
begin
for
(
i
=
0
;
i
<
len
;
i
=
i
+
1
)
begin
if
(
neg_clk
)
begin
if
(
neg_clk
)
\
$
_
DFFE_NP_
r
(
.
C
(
clk
)
,
.
D
(
int
[
i
])
,
.
E
(
e
)
,
.
Q
(
int
[
i
+
1
]))
;
\
$
_
DFFE_NP_
r
(
.
C
(
clk
)
,
.
D
(
int
[
i
])
,
.
E
(
e
)
,
.
Q
(
int
[
i
+
1
]))
;
//if (init) initial r.Q = ~(i % 2);
else
end
else
begin
\
$
_
DFFE_PP_
r
(
.
C
(
clk
)
,
.
D
(
int
[
i
])
,
.
E
(
e
)
,
.
Q
(
int
[
i
+
1
]))
;
\
$
_
DFFE_PP_
r
(
.
C
(
clk
)
,
.
D
(
int
[
i
])
,
.
E
(
e
)
,
.
Q
(
int
[
i
+
1
]))
;
//if (init) initial r.Q = ~(i % 2);
end
end
end
assign
z
=
int
[
len
]
;
assign
z
=
int
[
len
]
;
end
end
else
begin
else
begin
reg
[
len
-
1
:
0
]
int
;
if
(
init
)
begin
genvar
i
;
for
(
i
=
0
;
i
<
len
;
i
=
i
+
1
)
initial
int
[
i
]
=
~
(
i
%
2
)
;
end
if
(
len
==
1
)
begin
if
(
neg_clk
)
begin
always
@
(
negedge
clk
)
if
(
e
)
int
<=
a
;
end
else
begin
always
@
(
posedge
clk
)
if
(
e
)
int
<=
a
;
end
assign
z
=
int
;
end
else
begin
if
(
neg_clk
)
begin
always
@
(
negedge
clk
)
if
(
e
)
int
<=
{
int
[
len
-
2
:
0
]
,
a
};
end
else
begin
always
@
(
posedge
clk
)
if
(
e
)
int
<=
{
int
[
len
-
2
:
0
]
,
a
};
end
assign
z
=
int
[
len
-
1
]
;
end
end
end
endgenerate
endgenerate
endmodule
endmodule
module
top
(
input
clk
,
input
[
`N
-
1
:
0
]
a
,
input
e
,
output
[
`N
-
1
:
0
]
z1
,
z2
,
z3
,
z4
)
;
module
top
(
input
clk
,
input
[
`N
-
1
:
0
]
a
,
input
e
,
output
[
`N
-
1
:
0
]
z1
,
z2
,
z3
,
z4
,
z5
,
z6
)
;
generate
generate
genvar
i
;
genvar
i
;
for
(
i
=
0
;
i
<
`N
;
i
=
i
+
1
)
begin
:
pos_clk_no_enable_no_init_
icell
for
(
i
=
0
;
i
<
`N
;
i
=
i
+
1
)
begin
:
pos_clk_no_enable_no_init_
not_inferred
template
#(
.
len
(
i
+
1
))
sr
(
clk
,
a
[
i
]
,
1'b1
,
z1
[
i
])
;
template
#(
.
len
(
i
+
1
))
sr
(
clk
,
a
[
i
]
,
1'b1
,
z1
[
i
])
;
end
end
for
(
i
=
0
;
i
<
`N
;
i
=
i
+
1
)
begin
:
pos_clk_with_enable_no_init_
icell
for
(
i
=
0
;
i
<
`N
;
i
=
i
+
1
)
begin
:
pos_clk_with_enable_no_init_
not_inferred
template
#(
.
len
(
i
+
1
))
sr
(
clk
,
a
[
i
]
,
e
,
z2
[
i
])
;
template
#(
.
len
(
i
+
1
))
sr
(
clk
,
a
[
i
]
,
e
,
z2
[
i
])
;
end
end
//for (i = 0; i < `N; i=i+1) begin : pos_clk_no_enable_with_init_icell
for
(
i
=
0
;
i
<
`N
;
i
=
i
+
1
)
begin
:
pos_clk_with_enable_with_init_inferred
// template #(.len(i+1), .init(1)) sr(clk, a[i], 1'b1, z2[i]);
template
#(
.
len
(
i
+
1
)
,
.
inferred
(
1
)
,
.
init
(
1
))
sr
(
clk
,
a
[
i
]
,
e
,
z3
[
i
])
;
//end
end
for
(
i
=
0
;
i
<
`N
;
i
=
i
+
1
)
begin
:
neg_clk_no_enable_no_init_icell
for
(
i
=
0
;
i
<
`N
;
i
=
i
+
1
)
begin
:
neg_clk_no_enable_no_init_not_inferred
template
#(
.
len
(
i
+
1
)
,
.
neg_clk
(
1
))
sr
(
clk
,
a
[
i
]
,
1'b1
,
z3
[
i
])
;
template
#(
.
len
(
i
+
1
)
,
.
neg_clk
(
1
))
sr
(
clk
,
a
[
i
]
,
1'b1
,
z4
[
i
])
;
end
for
(
i
=
0
;
i
<
`N
;
i
=
i
+
1
)
begin
:
neg_clk_no_enable_no_init_inferred
template
#(
.
len
(
i
+
1
)
,
.
neg_clk
(
1
)
,
.
inferred
(
1
))
sr
(
clk
,
a
[
i
]
,
1'b1
,
z5
[
i
])
;
end
for
(
i
=
0
;
i
<
`N
;
i
=
i
+
1
)
begin
:
neg_clk_with_enable_with_init_inferred
template
#(
.
len
(
i
+
1
)
,
.
neg_clk
(
1
)
,
.
inferred
(
1
)
,
.
init
(
1
))
sr
(
clk
,
a
[
i
]
,
e
,
z6
[
i
])
;
end
end
//for (i = 0; i < `N; i=i+1) begin : neg_clk_no_enable_with_init_icell
// template #(.len(i+1), .neg_clk(1), .init(1)) sr(clk, a[i], 1'b1, z4[i]);
//end
endgenerate
endgenerate
endmodule
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