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

📄 cpuwait.vhd

📁 avr core porocesssor vhdl source code
💻 VHD
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -