1樓:匿名使用者
設計一個四位的全加器(功能說明見實驗二.(二).2) 6.
設計一個7位奇偶校驗電路(功能說明見實驗二.(二).4) 7.
數字比較器,設計4位二進位制數字比較器 (二)基於vhdl的時序電路設計 用vhdl語言編寫實現下列器件功能的程式並進行編譯,...
2樓:
vhdl語言設計四位全加器:
library ieee;
use ieee.std_logic_1164.all;
entity pro1 is
port(a1,b1,g1bar,a0,b0,g0bar:in std_logic;
y20,y21,y22,y23,y10,y11,y12,y13:out std_logic);
end pro1;
architecture pro1_arch of pro1 is
begin
y10<='0' when(b0='0') and ((a0='0') and (g0bar='0')) else '1';
y11<='0' when(b0='0') and ((a0='1') and (g0bar='0')) else '1';
y12<='0' when(b0='1') and ((a0='0') and (g0bar='0')) else '1';
y13<='0' when(b0='1') and ((a0='1') and (g0bar='0')) else '1';
y20<='0' when(b1='0') and ((a1='0') and (g1bar='0')) else '1';
y21<='0' when(b1='0') and ((a1='1') and (g1bar='0')) else '1';
y22<='0' when(b1='1') and ((a1='0') and (g1bar='0')) else '1';
y23<='0' when(b1='1') and ((a1='1') and (g1bar='0')) else '1';
end pro1_arch;
能實現四位二進位制數全加的數位電路模組,稱之為四位全加器。
3樓:匿名使用者
library ieee;
use ieee.std_logic_1164.all;
entity pro1 is
port(a1,b1,g1bar,a0,b0,g0bar:in std_logic;
y20,y21,y22,y23,y10,y11,y12,y13:out std_logic);
end pro1;
architecture pro1_arch of pro1 is
begin
y10<='0' when(b0='0') and ((a0='0') and (g0bar='0')) else '1';
y11<='0' when(b0='0') and ((a0='1') and (g0bar='0')) else '1';
y12<='0' when(b0='1') and ((a0='0') and (g0bar='0')) else '1';
y13<='0' when(b0='1') and ((a0='1') and (g0bar='0')) else '1';
y20<='0' when(b1='0') and ((a1='0') and (g1bar='0')) else '1';
y21<='0' when(b1='0') and ((a1='1') and (g1bar='0')) else '1';
y22<='0' when(b1='1') and ((a1='0') and (g1bar='0')) else '1';
y23<='0' when(b1='1') and ((a1='1') and (g1bar='0')) else '1';
end pro1_arch;
怎樣用語言表達對父母的愛,如何用語言表達心痛?
語言表達的方式有多種,選擇自己覺的好的,父母容易接受的,充滿感動和謝意的。具體要看你自己的性格取向,是含蓄還是直白,也要看父母是開放還是保守,根據具體情況判斷選擇含蓄的表達方式還是直白的表達方式。你好!你可以這麼說 以後我來照顧你們,我愛你們 1 兒時,小男孩家很窮,吃飯時,飯常常不夠吃,母親就把自...
c語言中的ascii碼錶怎麼看,高四位,低四位又是什麼呢
ascii碼在來c語言中用char型儲存,自一個char佔一個位元組,即8位。bai 當寫成二進位制表達du形式時zhi,就是8個0或者1的數字,這dao8個數字中,左邊四個稱為高四位,右邊四個稱為低四位。所以在查ascii碼錶時,需要 1把要查的值,轉成二進位制值 2 得到高四位值,及低四位值 3...
如何用語言表達心痛,用很委婉的語言表達難過的心情的語句
良辰美景奈何天,賞心樂事誰家院。你有試過守著一個對你沒有半點心動的人的感覺嗎?你有試過三個人走樓梯你被擠在後面的感覺嗎?你有試過蹲下寄鞋帶一抬頭所有人都走遠的感覺嗎?你有試過大家一起聊天而你一句都差不上的感覺嗎?你有試過和朋友打招呼而他卻無視你你只好尷尬的把手放下的感覺嗎?你有試過和朋友出去轉身他就...