cpuwait.vhd

来自「avr core porocesssor vhdl source code」· VHDL 代码 · 共 23 行

VHD
23
字号
LIBRARY IEEE;
USE IEEE.std_logic_1164.all;
USE IEEE.std_logic_arith.all;
USE IEEE.std_logic_unsigned.all;

entity cpuwait is port (
          clk       : in std_logic;
          nrst      : in std_logic;
	  		  
	      cpuwait  : out std_logic;		  
	      ramwe	   : in  std_logic;
		  ramre	   : in  std_logic
		               );

end cpuwait;

architecture beh of cpuwait is
begin

cpuwait   <= '0';

end beh;

⌨️ 快捷键说明

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