entity splitTenth is port (inBus: in bit_vector(9 downto 0); out9: out bit); end splitTenth; architecture splitTenthArch of splitTenth is begin out9 <= inBus(0); end splitTenthArch;