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

📄 count19.vhd.bak

📁 Source of Grabber Board
💻 BAK
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;

entity count19 is
	port(
		SEC, LLC2, HREF_I : IN std_logic;
		RESET : in std_logic;
		ADDRESS : buffer std_logic_vector(18 downto 0)
	);
end count19;

architecture honey of count19 is
begin
	process(SEC, LLC2, RESET, HREF_I)
	begin
		if(RESET='0') then ADDRESS<="0000000000000000000";
		elsif(LLC2'event and LLC2 ='1') then 
			--if(HREF_I = '1') then 
			ADDRESS<=ADDRESS + 1;
			--end if;
		end if;
	end process;
end honey;

⌨️ 快捷键说明

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