mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-19 19:02:04 +00:00
Fixed typo in port name
This commit is contained in:
parent
b5171541cd
commit
41bbad4e4c
1 changed files with 1 additions and 1 deletions
|
@ -286,7 +286,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 nRST) begin
|
always @(posedge CLK, negedge nRST) begin
|
||||||
|
|
||||||
if(!nRST)
|
if(!nRST)
|
||||||
shreg = 0;
|
shreg = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue