1樓:匿名使用者
std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity add is
port(clr,en,clkin:in std_logic; ---------清零,使能及觸發時鐘
a,b:in std_logic_vector(9 downto 0);---------加數
c:out std_logic_vector(9 downto 0);----------和
ci:out std_logic ---------進位
);end add;
architecture arch of add is
---------;
signal reg:std_logic_vector(10 downto 0):="00000000000";
begin
----------------
process(clr,clkin,en,a,b)
begin
if(clr='0') then --------------非同步清零
reg<="00000000000";
elsif(clkin'event and clkin='1') then
if(en='1')then -------------同步使能
reg<=('0'&a)+('0'&b); ---------求和
end if;
end if;
end process;
---------------
c<=reg(9 downto 0); ----------賦值給和
ci<=reg(10); ----------賦值給進位
end arch;
2樓:year追夢人
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity cnt4 is
port(clr,clk:in std_logic;
q:buffer std_logic_vector(3 downto 0));
end cnt4;
architecture one of cnt4 isbegin
process(clr,clk)
begin
if(clr='1') then q<="0000";
elsif(clk'event and clk='1') thenif q="1111" then q<="0000";
else q<=q+1;
end if;
end if;
end process;
end one;
急求vhdl帶非同步清零和同步使能功能的四位加法計數器的源程式清單,謝謝~
3樓:匿名使用者
vhdl語言設計一個帶非同步清零和同步使能的4位二進位制加法計數器源程式如下,程式**結果如圖所示
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity counter4 is
port(clk : in std_logic;
clr : in std_logic;
enable : in std_logic;
q : out std_logic_vector(3 downto 0));
end counter4;
architecture arch of counter4 is
signal dout : std_logic_vector(3 downto 0);
begin
p1 : process(clk,clr)
begin
if clr='0' then
dout <= "0000";
elsif clk'event and clk='1' then
if enable='1' then
dout <= dout+1;
elsif enable='0' then
dout <= dout;
end if;
end if;
end process p1;
p2 : process(dout)
begin
q <= dout;
end process p2;
end arch;
請各位大神幫忙用vhdl語言設計含有非同步置位和同步計數使能的4位二進位制數減法計數器 10
4樓:公羊頤
不是很簡單嘛,把電路圖畫出來,然後描述出來就好了。。。
分光計的調節和使用怎樣正確讀數,分光計的調整和使用 實驗資料,急!!!!
墨汁諾 分光計的讀數,主要就是對遊標盤遊標的讀數。遊標盤的讀數和遊標卡尺很像,在遊標盤的主尺上讀到最小單位度,然後觀察遊標上哪根線和遊標盤上的刻度是嚴格對齊的,讀到分。遊標盤讀數加上游標讀數只和為最終讀數,不需要估讀。分光計實驗中,遊標盤上設定兩個遊標的目的在於防止遊標盤存在偏心率。由於遊標盤是一個...
經常使用網路語言的人是怎樣的人,經常使用網路語言的人是乙個怎樣的人?
鬼鬼 orz 五體投地 莓兲想埝禰。巳宬s 1.種漝慣。每天想念你,已成為一種習慣 如果沒有註解,估計很難有人能第一時間反應過來上述文字的意思。而這就是90後網民的網路語言 火星文 對於這類網路語言的盛行,社會上已經 了很久,褒貶不一。網路語言逐漸滲透現實生活 究其 火星文 產生原因,有專家分析,可...
腕式電子血壓計怎麼用使用方法怎樣
本身電子血壓計就不是很很準確的,相比之下臂式也要比腕式的強一些,最好是不要買這種的,雖然確實是方便,我家用的是由泰血壓計,屬於自動的水銀血壓計,準確不說,用起來也相當的方便,上買的,你可以去了解一下,是現在最新型的血壓計了 http shop110481737.taobao.com 如何使用歐姆龍電...