⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 types.vhd

📁 使用VHDL语言编写的8051IP核
💻 VHD
字号:
--
--  File: Types.vhd
--  created by Design Wizard: 04/28/99 08:45:16
--

--{{ Section below this comment is automatically maintained
--   and may be overwritten
--{entity {Types} architecture {Types}}


package Types is

type ScrType is record
	LineA: STRING (1 to 16);
	LineB: STRING (1 to 16);
end record;

type MemType is array (0 to 31) of bit_vector(7 downto 0);

type ASCIITableType is array (0 to 95) of character;

constant ASCII_Table: ASCIITableType :=
 ( 	 ' ','!','"',' ','$','%','&',''','(',')','*','+',',','-','.','/',
	 '0','1','2','3','4','5','6','7','8','9',':',';','<','=','>','?',
	 '@','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O',
	 'P','Q','R','S','T','U','V','W','X','Y','Z','[','\',']','

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -