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

📄 arith_cnt_comp.vhd

📁 ARM7系统IP核的VHDL语言源代码
💻 VHD
字号:
library ieee;use ieee.std_logic_1164.all;-- PREFIX: arith_xxxpackage arith_cnt_comp is-------------------------------------------------------------------------------constant arith_cnt8_SZ : integer := 8;constant arith_cnt8_BSZ : integer := 3;type arith_cnt8_in is record    data : std_logic_vector(arith_cnt8_SZ-1 downto 0);end record;type arith_cnt8_out is record    res : std_logic_vector(arith_cnt8_BSZ-1 downto 0);end record;component arith_cnt8port (    rst    : in  std_logic;    clk    : in  std_logic;    si : in  arith_cnt8_in;    so : out arith_cnt8_out);end component;-------------------------------------------------------------------------------  end arith_cnt_comp;

⌨️ 快捷键说明

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