mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-11 00:23:26 +00:00
Fixed typo in parameter name
This commit is contained in:
parent
a0c19aae55
commit
85ee88b0ee
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ module GP_COUNT8(input CLK, input wire RST, output reg OUT);
|
||||||
count <= count - 1'd1;
|
count <= count - 1'd1;
|
||||||
|
|
||||||
if(count == 0)
|
if(count == 0)
|
||||||
count <= COUNT_MAX;
|
count <= COUNT_TO;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
if((RESET_MODE == "RISING") && RST)
|
if((RESET_MODE == "RISING") && RST)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue