1024手机基地看电影,午夜福利视频导航,国产精品福利在线一区,亚洲欧美日韩另类成人,在线观看午夜日本理论片,成年超爽免费网站,国产精品成人免费,精品动作一级毛片,成人免费观看网站,97精品伊人久久大香蕉
標(biāo)題:
基于FPGA的3位鎖存源碼
[打印本頁(yè)]
作者:
bzc4444
時(shí)間:
2018-5-31 12:39
標(biāo)題:
基于FPGA的3位鎖存源碼
基于FPGA的3位鎖存
Ilibrsry ieee;
use ieee.std_logic_1164.all;
entity sn74373 is
port(d: in std_logic_vetor(8 downto 1);
OEN:in std_logic;
G:in std_logic;
Q:out std_logic_vector(8 downto 1));
end entity sn74373;
architecture two of sn74373 is
signal sigvec_save:std_logic_vector(8 downto 1);
begin
process(D,OEN,G)
begin
if OEN='0' then
Q<=sigvec_save;
else
Q<="ZZZZZZZZ";
end if;
if G='1' then
sigvec_save<=D;
end if;
end process;
eng architecture two;
復(fù)制代碼
fpga.docx
2018-5-31 12:38 上傳
點(diǎn)擊文件名下載附件
下載積分: 黑幣 -5
10.56 KB, 下載次數(shù): 2, 下載積分: 黑幣 -5
3位所存
歡迎光臨 (http://www.raoushi.com/bbs/)
Powered by Discuz! X3.1