1.) A VHDL Model that exclusively uses concurrent signal assignment statements to describe the functionality of the design most likely represents which of the following styles of VHDL model?
2.) Which of the following delay models should be used to simulate just the effect of logic propagation delays.
3.) Which of the following is not a VHDL data object
4.) Which of the following statements are true?
5.) The following fragment of code illustrates the use of what VHDL construct?
IF clockevent AND clock = 1 THEN
output <= input +1
END IF;
6.) Which of the following statements most accurately identifies any errors in the VHDL Code fragment below?
ENTITY test is
PORT (a, b: IN BIT; y, z: OUT BIT; clock: INOUT BIT);
END test;
ARCHITECTURE example OF test IS
BEGIN
a <= y AND z AND clock;
b <= y NOR z AND clock;
Clock <= NOT clock;
END example;