aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opt
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/opt
parent051630763741914c3ba3bdf25ea091395dbc00b4 (diff)
downloadyosys-81906aa627ed4a2d232a27a84e050bf86f2f83a6.tar.gz
yosys-81906aa627ed4a2d232a27a84e050bf86f2f83a6.tar.bz2
yosys-81906aa627ed4a2d232a27a84e050bf86f2f83a6.zip
Fix tests for check in equiv_opt
Diffstat (limited to 'tests/opt')
-rw-r--r--tests/opt/opt_dff_en.ys2
-rw-r--r--tests/opt/opt_dff_mux.ys2
-rw-r--r--tests/opt/opt_dff_qd.ys2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/opt/opt_dff_en.ys b/tests/opt/opt_dff_en.ys
index 06ee6c63d..9538afcc2 100644
--- a/tests/opt/opt_dff_en.ys
+++ b/tests/opt/opt_dff_en.ys
@@ -6,7 +6,7 @@ module top(...);
input CLK;
input [1:0] D;
-output [15:0] Q;
+output [11:0] Q;
input SRST;
input ARST;
input [1:0] CLR;
diff --git a/tests/opt/opt_dff_mux.ys b/tests/opt/opt_dff_mux.ys
index ed01bed59..f21f9e9b8 100644
--- a/tests/opt/opt_dff_mux.ys
+++ b/tests/opt/opt_dff_mux.ys
@@ -7,7 +7,7 @@ module top(...);
input CLK;
input NE, NS;
input EN;
-output [23:0] Q;
+output [17:0] Q;
input [23:0] D;
input SRST;
input ARST;
diff --git a/tests/opt/opt_dff_qd.ys b/tests/opt/opt_dff_qd.ys
index afc96c42f..7b0b4c224 100644
--- a/tests/opt/opt_dff_qd.ys
+++ b/tests/opt/opt_dff_qd.ys
@@ -7,7 +7,7 @@ module top(...);
input CLK;
input EN;
(* init = 24'h555555 *)
-output [23:0] Q;
+output [19:0] Q;
input SRST;
input ARST;
input [1:0] CLR;