Commit d35dff72 authored by Theodor-Adrian Stana's avatar Theodor-Adrian Stana

hdl: Changed pulse LEDs for active-high logic, as implemented on V2 card

parent f8bff072
......@@ -2003,8 +2003,8 @@ end generate gen_rear_test_logic;
--============================================================================
-- Drive pulse LEDs
--============================================================================
led_front_o <= not front_led_seq when (pulse_led_en = '1') else
not front_led(5 downto 0);
led_front_o <= front_led_seq when (pulse_led_en = '1') else
front_led(5 downto 0);
led_inv_o <= inv_led_seq when (pulse_led_en = '1') else
tester_ctrl when (tester_vcc = '1') else
front_led(9 downto 6);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment