From cb1ff76e82fa1b77016530d61d16b426a9e1d5e3 Mon Sep 17 00:00:00 2001 From: Friedrich Beckmann Date: Sun, 28 Apr 2024 18:25:01 +0200 Subject: fixed Quartus Problem with indexed assignment --- src/top_shift.vhd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, -- cgit v1.2.3