Gast
#2600514
ModelSIM compiliert das file mit den warnings, dass die internen Signale
nicht in der Liste stehen. Warum ist das so?
clk_proc : process(sen_clock, value)
begin
if rising_edge(sen_clock) then
value <= std_logic_vector(unsigned(pixel (9 downto 2)) *
unsigned(line(9 downto 2)) + unsigned(dmc));
end if;
calc <= value (12 downto 0);
end process;
liegt das an dem calc? Dort greift er auf value zurück, das müsste ihm
doch reichen, oder?