aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2017-07-21 17:43:05 +0200
committerClifford Wolf <clifford@clifford.at>2017-07-21 17:43:05 +0200
commit4ac8fff26c3f29372d98c2230ab8cab76650f3d5 (patch)
tree66ea9116054ff0f2778fcfc2ce6e11156f5bf6b7 /examples
parent6124133269c7ff7bc550064e116c1bcfcbb412bf (diff)
downloadicestorm-4ac8fff26c3f29372d98c2230ab8cab76650f3d5.tar.gz
icestorm-4ac8fff26c3f29372d98c2230ab8cab76650f3d5.tar.bz2
icestorm-4ac8fff26c3f29372d98c2230ab8cab76650f3d5.zip
Use better error pattern in icestick checker example
Diffstat (limited to 'examples')
-rw-r--r--examples/icestick/checker.v2
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