@E: CL123 :"C:\my_designs\vp2290b\vp2290b\src\dvi_tcon.vhd":74:2:74:3|The logic for LINE_DONE does not match a standard flip-flop
The process in question:
LINE_TRIGGER: process(CLOCK) begin
if (DE'event and DE='0') then LINE_DONE <= '1'; else LINE_DONE <= '0'; end if;
end process;
Does this mean that the process as written is nonsynthesizable?
The process in question:
LINE_TRIGGER: process(CLOCK) begin
if (DE'event and DE='0') then LINE_DONE <= '1'; else LINE_DONE <= '0'; end if;
end process;
Does this mean that the process as written is nonsynthesizable?