Which of the following can have more than one driver?
Which of the following signal types can have more than one driver?
Antenna effect arises due to the
In VHDL, which data type can be used to declare memories?
Where should a user declare a constant that needs to be accessible by the entire codebase?
Which of the following is the most basic form of behavioral modeling in VHDL?
What is the primary purpose of a signal in a circuit?
A component has 3 ports - two inputs (a and b) and one output (y). Which of the following statements is for the positional mapping of the component?
Refer to the VHDL code given below, what should be the output of the variables 'y' and 'z'?
VARIABLE x : BIT_VECTOR(3 DOWNTO 0) := 1010;
VARIABLE y : BIT_VECTOR(3 DOWNTO 0) := 0000;
VARIABLE z : BIT_VECTOR(3 DOWNTO 0) := 0000;
...
y := x SRL 2;
z := x SLL 2;
...
Which of the following VHDL code for a full adder is correct?