Fixed incorrect signal naming in GP_IOBUF
authorAndrew Zonenberg <azonenberg@drawersteak.com>
Wed, 4 May 2016 15:06:18 +0000 (08:06 -0700)
committerAndrew Zonenberg <azonenberg@drawersteak.com>
Wed, 4 May 2016 15:06:18 +0000 (08:06 -0700)
techlibs/greenpak4/cells_sim.v

index b419302fd756ddd27ad77ce6ade6a6246d2c572f..6c3ffcaa08486ce5f74ef8553608972b973e51fe 100644 (file)
@@ -139,8 +139,8 @@ module GP_IBUF(input IN, output OUT);
 endmodule
 
 module GP_IOBUF(input IN, input OE, output OUT, inout IO);
-       assign IN = IO;
-       assign IO = OE ? OUT : 1'bz;
+       assign OUT = IO;
+       assign IO = OE ? IN : 1'bz;
 endmodule
 
 module GP_INV(input IN, output OUT);