3
0
Fork 0
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:
Andrew Zonenberg 2017-08-11 16:55:31 -07:00
parent c205d571df
commit 348acbd968

View file

@ -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.