aboutsummaryrefslogtreecommitdiff
path: root/icefuzz/tests/sb_gb.v
diff options
context:
space:
mode:
Diffstat (limited to 'icefuzz/tests/sb_gb.v')
-rw-r--r--icefuzz/tests/sb_gb.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/icefuzz/tests/sb_gb.v b/icefuzz/tests/sb_gb.v
new file mode 100644
index 0000000..f71e594
--- /dev/null
+++ b/icefuzz/tests/sb_gb.v
@@ -0,0 +1,9 @@
+module top (
+ input [7:0] a,
+ output [7:0] y
+);
+ SB_GB gbufs [7:0] (
+ .USER_SIGNAL_TO_GLOBAL_BUFFER(a),
+ .GLOBAL_BUFFER_OUTPUT(y)
+ );
+endmodule