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

📄 ex_p5_8_mult_config_stmt.vhd

📁 This is the course for VHDL programming
💻 VHD
字号:
library IEEE;use IEEE.STD_LOGIC_1164.ALL;use work.conv_func.all;entity DSP is     port( R: out STD_LOGIC_VECTOR(15 downto 0);			P,Q :in STD_LOGIC_VECTOR(7 downto 0));end DSP;architecture STRUCT of DSP is   component MULTIPLIER	   port(	Z: out STD_LOGIC_VECTOR(15 downto 0);			X,Y :in STD_LOGIC_VECTOR(7 downto 0));	end component;	for M:MULTIPLIER use entity work.MULT8          port map(A => to_bitvect(X),                   B => to_bitvect(Y),                   to_stdlogicvector(C) => R);begin    M:MULTIPLIER port map(R,P,Q);end STRUCT;

⌨️ 快捷键说明

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