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

📄 ff_reset.vhd

📁 一个verilog实现的crc校验
💻 VHD
字号:
library IEEE;use IEEE.std_logic_1164.all;use IEEE.std_logic_arith.all;use IEEE.std_logic_unsigned.all;entity ff_reset is  port (    phi2         : in  std_logic;    reset_glitch : in  std_logic;    reset_clean  : out std_logic);end ff_reset;architecture behavior of ff_reset isbegin  -- behavior  -- purpose: Clean and synchronize the reset with the clock  -- type   : sequential  -- inputs : phi2, reset_glitch  -- outputs: reset_clean  p_ff_reset: process (phi2)  begin  -- process p_big_xor_register    if phi2'event and phi2 = '1' then  -- rising clock edge       reset_clean <= reset_glitch;    end if;  end process p_ff_reset;end behavior;

⌨️ 快捷键说明

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