Fixed typo in port name
authorAndrew Zonenberg <azonenberg@drawersteak.com>
Sun, 8 May 2016 04:14:42 +0000 (21:14 -0700)
committerAndrew Zonenberg <azonenberg@drawersteak.com>
Sun, 8 May 2016 04:14:42 +0000 (21:14 -0700)
techlibs/greenpak4/cells_sim.v

index 5a59a06b40c2f9b0f7a44612dbb92b837ad39799..b9cfbe66564bd065350f1640ff03b7941dbbfc08 100644 (file)
@@ -286,7 +286,7 @@ module GP_SHREG(input nRST, input CLK, input IN, output OUTA, output OUTB);
        
        reg[15:0] shreg = 0;
        
-       always @(posedge clk, negedge nRST) begin
+       always @(posedge CLK, negedge nRST) begin
                
                if(!nRST)
                        shreg = 0;