aboutsummaryrefslogtreecommitdiffstats
path: root/icefuzz/tests/icegate.v
diff options
context:
space:
mode:
Diffstat (limited to 'icefuzz/tests/icegate.v')
-rw-r--r--icefuzz/tests/icegate.v18
1 files changed, 18 insertions, 0 deletions
diff --git a/icefuzz/tests/icegate.v b/icefuzz/tests/icegate.v
new file mode 100644
index 0000000..13b7dd5
--- /dev/null
+++ b/icefuzz/tests/icegate.v
@@ -0,0 +1,18 @@
+module top (
+ inout pin,
+ input latch_in,
+ output din_0,
+ output global
+);
+ SB_GB_IO #(
+ .PIN_TYPE(6'b 0000_11),
+ .PULLUP(1'b 0),
+ .NEG_TRIGGER(1'b 0),
+ .IO_STANDARD("SB_LVCMOS")
+ ) \pin_gb_io (
+ .PACKAGE_PIN(pin),
+ .LATCH_INPUT_VALUE(latch_in),
+ .D_IN_0(din_0),
+ .GLOBAL_BUFFER_OUTPUT(globals)
+ );
+endmodule