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

📄 get_res.vhd

📁 本设计是一个八位被除数除以四位除数
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
entity get_res is
port(isover:in std_logic;
complete:out std_logic
);
end get_res;
architecture behav of get_res is
begin
	u1:process(isover)
	begin
	if isover'event and isover='1' then
		complete<='1';
	end if;
	end process u1;
end behav;

⌨️ 快捷键说明

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