aboutsummaryrefslogtreecommitdiffstats
path: root/icefuzz/tests/sb_dffes.v
diff options
context:
space:
mode:
Diffstat (limited to 'icefuzz/tests/sb_dffes.v')
-rw-r--r--icefuzz/tests/sb_dffes.v3
1 files changed, 3 insertions, 0 deletions
diff --git a/icefuzz/tests/sb_dffes.v b/icefuzz/tests/sb_dffes.v
new file mode 100644
index 0000000..e1d7a13
--- /dev/null
+++ b/icefuzz/tests/sb_dffes.v
@@ -0,0 +1,3 @@
+module top (input C, D, E, S, output Q);
+ SB_DFFES ff (.C(C), .D(D), .E(E), .S(S), .Q(Q));
+endmodule