diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-04-28 18:25:01 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-05-28 12:22:40 +0200 |
commit | cb1ff76e82fa1b77016530d61d16b426a9e1d5e3 (patch) | |
tree | e8f292c49284e38aac8b80729b820332d666dbb7 | |
parent | 6b51b0420ed86e9ee8298d6b52781521de6e0476 (diff) |
fixed Quartus Problem with indexed assignment
-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, |