日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

EBU6335代寫、Java,c/c++程序語言代做

時間:2024-03-02  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



EBU6335 2022/23
Question 1
a) Describe entry in the context of digital system design. Also explain how VHDL is used in the entry
process.
[5 marks]
b) The following is an incomplete VHDL model the so-called Or-And-Invert (OAI) gate (Boolean function Y = (A + B) · C), possibly with some syntax errors.
[8 marks]
entity OAI21 is
port (
A B C: in std_logic
Y: out std_logic
)
end
architecture is
Y = ~(A + B * C)
end architecture
i) Copy, correct and complete the VHDL code.
(5 marks)
ii) Suggest the output of the gate if inputs are A = 0, B = C = 1.
(3 marks)
c) In a signed binary addition S = A + B, it is known that A > 0 and B < 0.
[10 marks]
i) Explain whether there will be a carry in such an addition or not.
(3 marks)
ii) How is signed number represented?
(2 marks)
iii) Suppose the following full adder block FA is given as a component, write the VHDL architecture (no
need to provide the entity) for a 48-bit binary subtractor that takes A and B and gives S. You can
ignore carry in and out for your answer.
entity FA is
port (X, Y, Cin : in std_logic;
S, Cout : out std_logic);
end FA;
(5 marks)
Page 2 of 8
EBU6335 2022/23
Question 2
a) Explain briefly how a D flip-flop can be constructed using D latch(es).
[4 marks]
b) Figure 1 shows a sequential block constructed by a 2-to-1 multiplexer (MUX) and a positive-edge
trigged D flip-flop. This can be used to build a shift register.
[11 marks]
Figure 1: Sequential Block built by a MUX and a Flip-flop
i) If it is given that inverter has an area of 2 units and any 2-input logic gate has an area of 3 units,
estimate the area of the block.
(3 marks)
ii) Design and construct a 4-bit left shift register (i.e. towards MSB) using the block in Figure 1:
input(s): shift in bit X, shift control Shif t (active-high)
output(s): counter outputs Y = (MSB)Y3Y2Y1Y0(LSB)
Illustrate your design using a diagram (with proper annotations)
(5 marks)
iii) Is your design in ii) synchronous? Explain why.
(3 marks)
c) You are asked to design an add-2 synchronous counter that counts in 0, 2, 4,... numerically.
[8 marks]
i) Discuss a general strategy to design a synchronous counter
(4 marks)
ii) Write the VHDL architecture for the required add-2 synchronous counter with an asynchronous reset,
based on the following entity.
Your answer should use NO components.
entity SyncCountBy2 is
port (RST: in std_logic; -- asynchronous reset
CLK: in std_logic; -- clock signal
Q: out std_logic_vector(7 downto 0));
end SyncCountBy2;
(4 marks)
Page 3 of 8
EBU6335 2022/23
Question 3
a) A mealy finite state machine is used to automate a vending machine. The machine dispenses a bottle
of water after ≥ (greater than or equal to) 1 Yuan (=10 Jiao) is deposited. There is a single slot
through which to insert Yuan and Jiao. One cannot insert Yuan and Jiao at the same time. One
cannot insert any other coins or notes. The machine does not issue change. Figure 2 shows the state
transition diagram for the system.
[10 marks]
Figure 2: State transition diagram for a vending machine which dispenses bottles of water
i) State one difference between a synchronous state machine and an asynchronous state machine?
(1 marks)
ii) How many flip-flops in minimum are required to implement this state machine?
(1 marks)
iii) Part of the VHDL code used to implement the state machine is given below. Complete the code.
(8 marks)
entity mealy is
Port ( clk, rst : in STD_LOGIC;
1_Yuan, 5_Jiao : in STD_LOGIC;
dispense_water : out STD_LOGIC);
end mealy;
architecture Behavioral of mealy is
type state is (st0, st1);
signal present_state , next_state: state;
begin
syncronous_process: process (clk)
begin
if rising_edge(clk) then
if (rst = '1') then
present_state <= st0;
else
present_state <= next_state;
end if;
end if;
end process;
next_state_and_output_decoder: process(present_state , din)
begin
dispense_water <= '0';
next_state <= present_state;
case (present_state) is
-- your answers begin here
Page 4 of 8
EBU6335 2022/23
-- ...
-- ...
end case;
end process;
end Behavioral;
b) Consider the incomplete first-in first-out (FIFO) buffer shown in Figure 3. The 4-bit up counter is included to generate full and empty control signals. Prepare the VHDL architecture without any component
for the part circled in red.
[7 marks]
Figure 3: Block diagram for a First-in first-out buffer
c) Consider the DRAM cell, shown in Figure 4.
Figure 4: DRAM cell
The following sequence of events occurs. Explain whether this will lead to a ‘1’ being stored in the
cell. If not please explain what changes/additions are required and why.
[3 marks]
Step 1: The row input is set to 5V to represent the ‘1’ that will be written to the cell.
Step 2: Next the transistor must be turned on by setting the row input to 5V.
Step 3: The voltage on the capacitor will then increase until it reaches 5V.
Step 4: The transistor must remain turned on in order to trap the stored charge.
Page 5 of 8
EBU6335 2022/23
d) Figure 5 shows a number of tristate logic gates connected to a common bus line. Copy the diagram
and add the missing inputs and outputs to the points labelled A, B, C on the diagram.
[3 marks]
Figure 5: Tristate logic circuit
Page 6 of 8
EBU6335 2022/23
Question 4
a) The following algorithm is used to compare two 5-bit binary numbers and count the number of
corresponding bits that differ between them.
[13 marks]
i=0
Number_of_Bits = 5
while (i < Number_of_Bits) {
i=i+1
if (Binary_Number_1(i) =/ Binary_Number_2(i)){
j=j+1
}
}
output = j;
You are given a datapath as shown in Figure 6. The control signals are circled with their respective
bit positions in the control word, e.g. LD for R0 is bit 1 of the control word. RX.0 denotes the bit 0
(LSB) of the value stored in register RX and the shifter shifts value exactly 1 bit to the left (towards
LSB).
Figure 6: A Datapath with 5 registers
i) Based on the datapath shown in Figure 6, express the algorithm in RTL/RTN. You should generate
a done signal when the algorithm finishes.
(7 marks)
ii) Derive the control words (13; 12; ... ; 1; 0) for your algorithm.
(6 marks)
b) Consider the following number 5.37510. Express this number using a 10-bit binary number having
same number of bits for the integer and fractional parts.
[4 marks]
c) We wish to form the following product: 710 ×310. Let M = 710 and Q = 310. Use Booth’s Algorithm
to calculate the result. Show all workings.
[6 marks]
Page 7 of 8
EBU6335 2022/23
Question 5
ASCII code is a character encoding using exactly eight bits. In digital communications for ASCII code,
a start bit S (1→ 0) and a stop bit P (0→ 1) are attached to the beginning and the end of the character bit
stream respectively. For example, character A is encoded and transmitted as S01000001P.
You are now required to build a digital system for communications for 8-bit ASCII code.
Based on your design experience from the course project, discuss your approach in (i) designing an asynchronous ASCII code transmitter and receiver, and (ii) modelling and implementing the system.
[8 marks]
While your answer can be expressed in various formats (e.g. text, flow chart, block diagram) in your own
choice, that should cover BOTH aspects of the system, as explained above.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

掃一掃在手機打開當前頁
  • 上一篇:代寫股票指標 代編股票公式
  • 下一篇:COMP9021代做、Python程序語言代寫
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        国产视频一区免费看| 亚洲激精日韩激精欧美精品| 欧美福利视频网站| 9色porny自拍视频一区二区| 狠狠狠色丁香婷婷综合久久五月| 欧美成人在线免费视频| 激情久久久久| 欧美日韩免费区域视频在线观看| 欧美中文字幕在线观看| 国产精品视频一区二区三区| 国产精品日本一区二区| 午夜在线观看免费一区| 国产一区二区三区观看| 99riav1国产精品视频| 亚洲精品国精品久久99热一| 亚洲激情视频在线| 欧美国产在线电影| 亚洲成人直播| 91久久精品国产91久久性色tv| 1000部精品久久久久久久久| 久久成人羞羞网站| 国产日韩亚洲| 亚洲一区二区在线免费观看视频| 国产欧美精品一区二区色综合| 国产日韩欧美精品在线| 先锋影音网一区二区| 亚洲二区精品| 亚洲特黄一级片| 亚洲第一精品久久忘忧草社区| 亚洲第一区中文99精品| 久久天天躁狠狠躁夜夜爽蜜月| 亚洲精品日韩激情在线电影| 欧美一区二区网站| 亚洲一区二区视频| 蜜臀久久99精品久久久画质超高清| 国内偷自视频区视频综合| 午夜免费电影一区在线观看| 欧美激情精品久久久久久免费印度| 亚洲成人在线免费| 国产精品一区二区在线观看不卡| 亚洲专区一区| 亚洲欧洲日产国产综合网| 妖精成人www高清在线观看| 欧美精品粉嫩高潮一区二区| 欧美手机在线| 欧美视频在线免费| 免费在线观看日韩欧美| 久久一区二区三区av| 欧美成人精品激情在线观看| 亚洲欧美日韩国产| 欧美日韩国产免费| 国产亚洲一区二区在线观看| 亚洲一区二区高清视频| 久久男女视频| 在线一区二区三区做爰视频网站| 狠狠狠色丁香婷婷综合激情| 久久免费视频在线| 国产亚洲精品久| 国内不卡一区二区三区| 国产精品福利影院| 欧美日韩国产专区| 国产主播一区二区| 欧美国产精品| 亚洲精品国产拍免费91在线| 欧美精品在线免费| 一区二区三区欧美亚洲| 午夜精品理论片| 久久久久九九九| 久久久天天操| 国产精品成人免费精品自在线观看| 欧美精彩视频一区二区三区| 影音先锋中文字幕一区二区| 亚洲狠狠丁香婷婷综合久久久| 亚洲欧美日本在线| 亚洲一区二区三区精品动漫| 欧美日韩亚洲一区三区| 久久美女性网| 国产乱码精品一区二区三区av| 嫩草国产精品入口| 欧美精品少妇一区二区三区| 欧美国产在线视频| 激情五月综合色婷婷一区二区| 影音欧美亚洲| 免费短视频成人日韩| 国产偷久久久精品专区| 欧美一区日本一区韩国一区| 夜夜嗨av色综合久久久综合网| 久久久999成人| 亚洲成色精品| 欧美日韩国产成人在线| 欧美日韩中文字幕日韩欧美| 欧美国产丝袜视频| 伊人精品成人久久综合软件| 红桃视频国产一区| 亚洲免费在线视频一区 二区| 午夜国产精品影院在线观看| 1000精品久久久久久久久| 久久久久久久性| 欧美黑人一区二区三区| 亚洲日本乱码在线观看| 亚洲欧美另类中文字幕| 国产精品videossex久久发布| 日韩亚洲欧美综合| 亚洲免费av电影| 亚洲国产国产亚洲一二三| 国产精品99久久不卡二区| 伊人影院久久| 欧美大片免费| 午夜亚洲视频| 欧美日韩国产美女| 欧美日韩亚洲另类| 欧美精品www| 欧美精品18+| 欧美激情视频给我| 136国产福利精品导航网址应用| 亚洲人成在线免费观看| 免费日本视频一区| 国产亚洲观看| 国产一区在线观看视频| 亚洲一区区二区| 久久综合久久久| 亚洲欧美久久久久一区二区三区| 欧美成人a视频| 欧美影院成人| 亚洲私人影吧| 亚洲第一精品夜夜躁人人爽| 欧美日韩亚洲一区二区三区在线| 在线精品视频一区二区三四| 国产精品私拍pans大尺度在线| 亚洲国产精品成人精品| 欧美视频导航| 亚洲人成网站777色婷婷| 国产欧美日韩中文字幕在线| 一区在线播放| 亚洲大胆女人| 久久综合99re88久久爱| 国产精品人人爽人人做我的可爱| 久久青草久久| 老司机精品视频一区二区三区| 亚洲高清激情| 午夜精品区一区二区三| 亚洲第一在线综合网站| 亚洲欧洲三级| 一区二区三区高清在线| 亚洲一品av免费观看| 亚洲黄色成人| 欧美日韩国产成人精品| 亚洲国产高清aⅴ视频| 久久青草久久| 亚洲精品美女久久久久| 亚洲作爱视频| 亚洲激情小视频| 亚洲欧洲一区二区三区在线观看| 黄色成人在线观看| 亚洲人成人一区二区三区| 中文日韩在线视频| 国产精品久久久久久久久免费| 亚洲成色最大综合在线| 欧美日韩三区| 欧美精品日韩综合在线| 免费成人在线观看视频| 亚洲大片在线| 欧美3dxxxxhd| 亚洲免费电影在线观看|