-- 8086 High Level Pins Component
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity CS_8086_MAIN is
	generic (REG_16BIT_SIZE : positive := 16);
	port (
			AD0_15 : inout std_logic_vector(REG_16BIT_SIZE - 1 downto 0);
			A16_19 : out   std_logic_vector(3 downto 0);
			ALE    : out   std_logic
          );
end CS_8086_MAIN;
