15 lines
501 B
VHDL
15 lines
501 B
VHDL
package pkg_sbs is
|
|
|
|
constant BW_HU_CTR : natural := 10; -- bits for control
|
|
constant BW_HU_CFG : natural := 15; -- bits for configuration
|
|
|
|
constant N_H_MAX : natural := 8; -- Max size of H
|
|
constant ADDR_H_MAX : natural := 3; -- log2 of N_H_MAX; it is size of addr
|
|
-- bus
|
|
|
|
--subtype hu_ctr is bit_vector 4 downto 0;
|
|
|
|
-- Array of reals with max size of H
|
|
type array_as_h is array (N_H_MAX-1 downto 0) of real;
|
|
|
|
end package pkg_sbs;
|