PoC.misc.Sequencer
Todo
No documentation available.
Entity Declaration:
1 PORT (
2 Clock : IN STD_LOGIC;
3 Reset : IN STD_LOGIC;
4
5 Input : IN STD_LOGIC_VECTOR(INPUT_BITS - 1 DOWNTO 0);
6 rst : IN STD_LOGIC;
7 rev : IN STD_LOGIC;
8 nxt : IN STD_LOGIC;
9 Output : OUT STD_LOGIC_VECTOR(OUTPUT_BITS - 1 DOWNTO 0)
10 );
11end entity;
12
13
14ARCHITECTURE rtl OF misc_Sequencer IS
15 CONSTANT CHUNKS : POSITIVE := div_ceil(INPUT_BITS, OUTPUT_BITS);
16 CONSTANT COUNTER_BITS : POSITIVE := log2ceilnz(CHUNKS);