Drive input clock to output
问题 I've a module that have a 8bit input and a serial output, I want to serialize input data and synchronize it with a clock. I want to set my data when falling edge then wait when clock rise, when clock fall again I set another data. I don't want to connect the directly reference clock to the output because when I don't use this module I want a 1 state on clock output. I've tried this code: process(Clock, ModuleReset) begin if ModuleReset = '0' then OutData <= '0'; OutCK <= '0'; counter <= 7;