count19.vhd.bak

来自「Source of Grabber Board」· BAK 代码 · 共 24 行

BAK
24
字号
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 + =
减小字号Ctrl + -
显示快捷键?