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
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ module GP_COUNT8(
//Combinatorially output underflow flag whenever we wrap low
always @(*) begin
OUT <= (count == 8'h0);
OUT <= count;
POUT <= count;
end
//POR or SYSRST reset value is COUNT_TO. Datasheet is unclear but conversations w/ Silego confirm.