library ieee;
use ieee.std_logic_1164.all;

package globals is	
	constant cpu_address_bus_width		: integer := 13;
	constant cpu_data_bus_width			: integer := 16; 
	constant external_address_bus_width	: integer := 25;
	constant external_data_bus_width		: integer := 16;
	constant cf_address_bus_width			: integer := 11;
	constant cf_data_bus_width			: integer := 16; 
	constant uart_address_bus_width		: integer := 8;
	constant uart_data_bus_width			: integer := 8;  
	constant number_of_gpio				: integer := 28;
	constant vcc                    		: std_logic := '1';
	constant gnd                    		: std_logic := '0';
end package	globals;