aboutsummaryrefslogtreecommitdiffstats
path: root/tests/techmap/dffunmap.ys
diff options
context:
space:
mode:
authorJannis Harder <me@jix.one>2022-08-25 14:24:31 +0200
committerJannis Harder <me@jix.one>2022-10-07 16:04:51 +0200
commit81906aa627ed4a2d232a27a84e050bf86f2f83a6 (patch)
treebb32810e3d7996f965a325fc1010c6ac414cfede /tests/techmap/dffunmap.ys
parent051630763741914c3ba3bdf25ea091395dbc00b4 (diff)
downloadyosys-81906aa627ed4a2d232a27a84e050bf86f2f83a6.tar.gz
yosys-81906aa627ed4a2d232a27a84e050bf86f2f83a6.tar.bz2
yosys-81906aa627ed4a2d232a27a84e050bf86f2f83a6.zip
Fix tests for check in equiv_opt
Diffstat (limited to 'tests/techmap/dffunmap.ys')
-rw-r--r--tests/techmap/dffunmap.ys2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/techmap/dffunmap.ys b/tests/techmap/dffunmap.ys
index b813078ee..247699f80 100644
--- a/tests/techmap/dffunmap.ys
+++ b/tests/techmap/dffunmap.ys
@@ -4,7 +4,7 @@ module top(...);
input C, R, E, S;
input [1:0] D;
-output [20:0] Q;
+output [17:0] Q;
$dff #(.CLK_POLARITY(1'b0), .WIDTH(2)) ff0 (.CLK(C), .D(D), .Q(Q[1:0]));
$dffe #(.CLK_POLARITY(1'b0), .EN_POLARITY(1'b0), .WIDTH(2)) ff1 (.CLK(C), .EN(E), .D(D), .Q(Q[3:2]));