1.

A VARIABLE y is declared of STD_LOGIC_VECTOR type of 4 bits, if you want to assign 1001 to y, then what is the write assignment statement?

A. y <= “1001”
B. y := “1001”
C. y <= ‘1’, ‘0’, ‘0’, ‘1’
D. y => “1001”
Answer» C. y <= ‘1’, ‘0’, ‘0’, ‘1’


Discussion

No Comment Found