📄 my_package.vhd
字号:
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
package my_package is
type BYTE is array (7 downto 0) of STD_LOGIC;
type RAM_TYPE is array (integer range <>) of UNSIGNED(7 downto 0);
type ROM_TYPE is array (integer range <>) of UNSIGNED(7 downto 0);
end my_package;
---------------------------------------------------------------------
package body my_package is
end my_package;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -