mirror of https://github.com/YosysHQ/yosys.git
Fixed typo
This commit is contained in:
parent
ab11f2aa70
commit
0cbe70eaa4
|
@ -235,7 +235,7 @@ module GP_SHREG(input nRST, input CLK, input IN, output OUTA, output OUTB);
|
||||||
|
|
||||||
reg[15:0] shreg = 0;
|
reg[15:0] shreg = 0;
|
||||||
|
|
||||||
always @(posedge clk, negedge RSTN) begin
|
always @(posedge clk, negedge nRST) begin
|
||||||
|
|
||||||
if(!nRST)
|
if(!nRST)
|
||||||
shreg = 0;
|
shreg = 0;
|
||||||
|
|
Loading…
Reference in New Issue