| http://www.w3.org/ns/prov#value | - The code below is a structural description of an n-bit register.----------------------------------------------------------------------------------library IEEE;use IEEE.STD_LOGIC_1164.ALL;use IEEE.STD_LOGIC_ARITH.ALL;use IEEE.STD_LOGIC_UNSIGNED.ALL;entity ckt_reg isgeneric (pattern : natural := 4);Port ( clk : in STD_LOGIC;rst : in STD_LOGIC;loadEn : in STD_LOGIC;reg _in : in STD_LOGIC_VECTOR (regC
|