?? my_package.vhd
字號(hào):
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;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -