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

📄 changtb.vhd

📁 基于QuartusII环境下以模块化的形式做成的视频复合同步信号。
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;

entity changtb is
port(
	ck:		in std_logic;
	ctb:	out std_logic
	);
end changtb;

architecture a of changtb is

signal count: integer range 0 to 24999;
begin
process
	begin
		wait until ck = '1' ;
		if count < 24999 then
			count <= count + 1;
		else
			count <= 0;
		end if;
	end process;
process(count)
	begin
	    if count <=199 then
			ctb <= '0';
	    else
	        ctb<='1';
		end if;
	end process;
	end a;

⌨️ 快捷键说明

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