From 48154cb6f452d3bdb4da36cc267b4b6c45588dc9 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sat, 18 Jul 2015 13:10:40 +0200 Subject: Imported full dev sources --- icefuzz/tests/icegate.v | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 icefuzz/tests/icegate.v (limited to 'icefuzz/tests/icegate.v') 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 -- cgit v1.2.3