Skip to content

Commit

Permalink
invert the N leds
Browse files Browse the repository at this point in the history
  • Loading branch information
mattvenn committed Nov 2, 2020
1 parent 15755d1 commit a0425b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/icebreaker/top.v
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ end

// Map 7 LEDs that exists on icebreaker board
wire [31:0] leds;
assign { LEDR_N, LEDG_N, LED1, LED2, LED3, LED4, LED5 } = leds[6:0];
assign { LEDR_N, LEDG_N, LED1, LED2, LED3, LED4, LED5 } = {~leds[6:5], leds[4:0]};

nervsoc soc (
.clock(CLK),
.reset(reset),
.leds(leds)
);

endmodule
endmodule

0 comments on commit a0425b8

Please sign in to comment.