From 79460208c928e62c608d71c0d6d484293835e8dc Mon Sep 17 00:00:00 2001 From: Andrew Zonenberg Date: Mon, 2 May 2016 20:27:41 -0700 Subject: [PATCH] Added GP_ABUF cell --- techlibs/greenpak4/cells_sim.v | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/techlibs/greenpak4/cells_sim.v b/techlibs/greenpak4/cells_sim.v index b7dbe81a2..04bce8771 100644 --- a/techlibs/greenpak4/cells_sim.v +++ b/techlibs/greenpak4/cells_sim.v @@ -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"; -- 2.30.2