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

📄 minutes_out.vhd

📁 Bcode_s_m_h.rar实现GPSB码接收、译码等工程
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
entity minutes_out is
  port(quit_in:in std_logic_vector(25 downto 0);
       qa:out std_logic_vector(2 downto 0);
       qb:out std_logic_vector(3 downto 0);
       clk,j_in:in std_logic);
end minutes_out;
architecture a of minutes_out is
begin 
process(clk,j_in)
begin
if(clk'event and clk='1')then
  if(j_in='1')then 
    qa<=quit_in(15 downto 13);
    qb<=quit_in(11 downto 8);
  else
    null;
  end if;
end if;
end process;
end a;

⌨️ 快捷键说明

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