mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Fixed typo in GP_COUNT8 sim model
This commit is contained in:
parent
c205d571df
commit
348acbd968
|
@ -411,7 +411,7 @@ module GP_COUNT8(
|
||||||
//Combinatorially output underflow flag whenever we wrap low
|
//Combinatorially output underflow flag whenever we wrap low
|
||||||
always @(*) begin
|
always @(*) begin
|
||||||
OUT <= (count == 8'h0);
|
OUT <= (count == 8'h0);
|
||||||
OUT <= count;
|
POUT <= count;
|
||||||
end
|
end
|
||||||
|
|
||||||
//POR or SYSRST reset value is COUNT_TO. Datasheet is unclear but conversations w/ Silego confirm.
|
//POR or SYSRST reset value is COUNT_TO. Datasheet is unclear but conversations w/ Silego confirm.
|
||||||
|
|
Loading…
Reference in a new issue