advent-of-code/2021/day1/vhdl/day1.vhdl

12 lines
226 B
VHDL
Raw Normal View History

2021-12-01 14:52:22 +01:00
configuration day1 of sim is
for aoc_stdio
for dut_inst : dut
use entity work.top generic map (
MAX_INPUT_DIGITS => 6,
OUTPUT_WIDTH => OUTPUT_WIDTH,
STEP => STEP
);
end for;
end for;
end configuration;