Use better error pattern in icestick checker example

This commit is contained in:
Clifford Wolf 2017-07-21 17:43:05 +02:00
parent 6124133269
commit 4ac8fff26c
1 changed files with 1 additions and 1 deletions

View File

@ -51,5 +51,5 @@ module top (
end
wire ok = resetn && rdfin && !error;
assign LED1 = error, LED2 = error, LED3 = error, LED4 = error, LED5 = ok;
assign LED1 = 0, LED2 = error, LED3 = 0, LED4 = error, LED5 = ok;
endmodule