八位无符号乘法器.vhd
来自「含有各类寄存器」· VHDL 代码 · 共 13 行
VHD
13 行
--8-bit Unsigned Multiplierlibrary IEEE;use IEEE.Std_logic_1164.all;use IEEE.Std_logic_unsigned.all;entity MUL8X8 is port(A, B : in Std_logic_vector(7 downto 0); PROD : out Std_logic_vector(15 downto 0));end MUL8X8;architecture SYNP of MUL8X8 isbegin PROD <= A * B;end SYNP;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?