Skip to content

Commit

Permalink
ColorLight: Ledon: More Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Obijuan committed Jul 17, 2021
1 parent 1548366 commit ed89a08
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ColoLight-5A-75E-V71_FT2232H/Ledon/ledon.v
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@
//--------------------------------------

module top(
output led, //-- LEDs
output led, //-- LED
);

// -- The LED on the ColorLight-5A-75E works
// -- with inverse logic:
// -- 0: Turn on the LED
// -- 1: Turn off the LED

// Turn on the led
// (output the bit 0 to the led)
assign led = 1'b0;
Expand Down

0 comments on commit ed89a08

Please sign in to comment.