cnn.vhd
来自「fpga的应用」· VHDL 代码 · 共 20 行
VHD
20 行
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity cnn is
port(clk :in std_logic;
dataout:out std_logic_vector(31 downto 0));
end cnn;
architecture aa of cnn is
--signal data:std_logic_vector(31 downto 0);
begin
process(clk)
begin
if clk'event and clk='1' then
dataout<="00000100000110001001010011000000";
else
dataout<="00000100000110001001010011000000";
end if;
end process;
end aa;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?