diff options
-rw-r--r-- | src/top_shift.vhd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/top_shift.vhd b/src/top_shift.vhd index 96691e0..882e31e 100644 --- a/src/top_shift.vhd +++ b/src/top_shift.vhd @@ -40,7 +40,8 @@ begin en <= '1' when SW(0) = '1' else en_edge; -- Set the outputs; - EXP <= (7 downto 4 => led(9 downto 6), + EXP(7 downto 4) <= led(9 downto 6); + EXP(3 downto 0) <= ( 3 => en, 2 => x, 1 => rst_n, |