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

📄 pc.vhd

📁 自己刚写的一个RISC的cpu
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith;
use ieee.std_logic_unsigned.all;

entity pc is
       port(clk:in std_logic;
             rst:in std_logic;
             pc_in:in std_logic_vector(15 downto 0);
             pc_out:out std_logic_vector(15 downto 0));
end pc;

architecture one of pc is
       begin
       process(clk,rst)
       begin
       if(rst='1') then
          pc_out<=(others=>'0');
        elsif(clk'event and clk='1') then
           pc_out<=pc_in;
        end if;
        end process;
end one;
                        

⌨️ 快捷键说明

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