Added GP_ABUF cell
authorAndrew Zonenberg <azonenberg@drawersteak.com>
Tue, 3 May 2016 03:27:41 +0000 (20:27 -0700)
committerAndrew Zonenberg <azonenberg@drawersteak.com>
Tue, 3 May 2016 03:27:41 +0000 (20:27 -0700)
techlibs/greenpak4/cells_sim.v

index b7dbe81a272c6c73dc30cd7330d1d9edbb3f2f12..04bce8771664e90f288c68b611c80222bcce33b7 100644 (file)
@@ -13,6 +13,12 @@ module GP_4LUT(input IN0, IN1, IN2, IN3, output OUT);
        assign OUT = INIT[{IN3, IN2, IN1, IN0}];
 endmodule
 
+module GP_ABUF(input wire IN, output wire OUT);
+       
+       assign OUT = IN;
+       
+endmodule
+
 module GP_ACMP(input wire PWREN, input wire VIN, input wire VREF, output reg OUT);
 
        parameter BANDWIDTH = "HIGH";