diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-12-29 20:56:14 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-12-29 20:56:14 +0100 |
commit | eb85e29ff0ca7b9031cf21db3dccaa70b7ef567a (patch) | |
tree | 1ba63a59084b719a46a5891c3db52e55849c833b | |
parent | 39d53a6a89352123728811710101b2bc9e346b59 (diff) | |
parent | db5e1a257f6d5d13747303224ace7d937614407d (diff) | |
download | icestorm-eb85e29ff0ca7b9031cf21db3dccaa70b7ef567a.tar.gz icestorm-eb85e29ff0ca7b9031cf21db3dccaa70b7ef567a.tar.bz2 icestorm-eb85e29ff0ca7b9031cf21db3dccaa70b7ef567a.zip |
Merge pull request #20 from FSMaxB/patch-2
remove trailing tab in hx8kboard example verilog
-rw-r--r-- | examples/hx8kboard/example.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hx8kboard/example.v b/examples/hx8kboard/example.v index 9fc5a11..accbc2e 100644 --- a/examples/hx8kboard/example.v +++ b/examples/hx8kboard/example.v @@ -20,6 +20,6 @@ module top ( counter <= counter + 1; outcnt <= counter >> LOG2DELAY; end - + assign {LED0, LED1, LED2, LED3, LED4, LED5, LED6, LED7} = outcnt ^ (outcnt >> 1); endmodule |