Renamed VOUT to OUT on GP_ACMP cell
authorAndrew Zonenberg <azonenberg@drawersteak.com>
Sun, 24 Apr 2016 05:53:49 +0000 (22:53 -0700)
committerAndrew Zonenberg <azonenberg@drawersteak.com>
Sun, 24 Apr 2016 05:53:49 +0000 (22:53 -0700)
techlibs/greenpak4/cells_sim.v

index e6b5db750acac2c41bd7444e8f7ed5d0b5ba1fd6..586b7a9b8d887f3f7fa5d5e65c89fd714234a40e 100644 (file)
@@ -13,7 +13,7 @@ module GP_4LUT(input IN0, IN1, IN2, IN3, output OUT);
        assign OUT = INIT[{IN3, IN2, IN1, IN0}];
 endmodule
 
-module GP_ACMP(input wire PWREN, input wire VIN, input wire VREF, output reg VOUT = 0);
+module GP_ACMP(input wire PWREN, input wire VIN, input wire VREF, output reg OUT);
 
        parameter BANDWIDTH = "HIGH";
        parameter VIN_BUF_EN = 0;
@@ -21,6 +21,8 @@ module GP_ACMP(input wire PWREN, input wire VIN, input wire VREF, output reg VOU
        parameter VIN_ISRC_EN = 0;
        parameter HYSTERESIS = 0;
        
+       initial OUT = 0;
+       
        //cannot simulate mixed signal IP
 
 endmodule