Guest
#6526988
I'm trying to do the following task, but I need your help or some pointers: Write a counter with signal enable (active high) and synchronous reset signal (active high) to a VHDL file (cont_clk.vhd). The counter should generate an end of count (rco) output signal that turns high every 1 millisecond and which is active for one clock cycle (clk). It should also generate a count signal (q) of 14 bits. Use the counter scheme (sequential circuit) described below. The module should have the following entity declaration: entity cont_clk is Port (enable: in STD_LOGIC; reset: in STD_LOGIC; clk: in STD_LOGIC; rco: out STD_LOGIC; q: out STD_LOGIC_VECTOR (13 down 0)); end cont_clk;
