diff options
-rw-r--r-- | examples/icestick/checker.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/icestick/checker.v b/examples/icestick/checker.v index 63c70fe..a441845 100644 --- a/examples/icestick/checker.v +++ b/examples/icestick/checker.v @@ -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 |