diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-12-29 20:55:27 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-12-29 20:55:27 +0100 |
commit | 39d53a6a89352123728811710101b2bc9e346b59 (patch) | |
tree | 99ecd9b7bc8f0c36d80fd1e38d5af05210a6ad21 /examples/icestick/example.v | |
parent | 7852514c2cde208da87b62777b2c5e482092f50d (diff) | |
parent | d6a60bc2b5665e7c352f659668f62790782d3e72 (diff) | |
download | icestorm-39d53a6a89352123728811710101b2bc9e346b59.tar.gz icestorm-39d53a6a89352123728811710101b2bc9e346b59.tar.bz2 icestorm-39d53a6a89352123728811710101b2bc9e346b59.zip |
Merge pull request #19 from FSMaxB/patch-1
remove trailing tab in icestick example verilog
Diffstat (limited to 'examples/icestick/example.v')
-rw-r--r-- | examples/icestick/example.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/icestick/example.v b/examples/icestick/example.v index cb7cfcd..a934400 100644 --- a/examples/icestick/example.v +++ b/examples/icestick/example.v @@ -17,6 +17,6 @@ module top ( counter <= counter + 1; outcnt <= counter >> LOG2DELAY; end - + assign {LED1, LED2, LED3, LED4, LED5} = outcnt ^ (outcnt >> 1); endmodule |