Which of the following is true for the following module?
module mydesign (a,b);
input [1:0] b;
output reg a;
always @(b)
begin
if (b==2'b00) a = 1'b0;
else if (b==2'b11) a = 1'b0;
else a = 1'b1;
end
end module
module mydesign (a,b);
input [1:0] b;
output reg a;
always @(b)
begin
if (b==2'b00) a = 1'b0;
else if (b==2'b11) a = 1'b0;
else a = 1'b1;
end
end module
A. A latch will be generated for the output "a"
B. The synthesis tool will give an error
C. A combinational circuit implementing an AND function will be generated
D. A combinational circuit implementing a XOR function will be generated
Quảng cáo
Trả lời:
Chọn đáp án D.
Hot: 1000+ Đề thi cuối kì 1 file word cấu trúc mới 2025 Toán, Văn, Anh... lớp 1-12 (chỉ từ 60k). Tải ngay
CÂU HỎI HOT CÙNG CHỦ ĐỀ
Câu 1
A. 00100110
B. 00111110
C. 01111110
D. None of these
Lời giải
Chọn đáp án B.
Câu 2
All of the above
A variable index used at the RHS of an “assign” statement generates a multiplexer whereas usage of it at the LHS results in a decoder
The “assign” statement can be used to implement both combinational as well as sequential circuits
The use of conditional operator in an “assign” statement always results in a multiplexer
Lời giải
Chọn đáp án C.
Câu 3
9
Invalid expression
6
27
Lời giải
Bạn cần đăng ký gói VIP ( giá chỉ từ 199K ) để làm bài, xem đáp án và lời giải chi tiết không giới hạn.
Câu 4
None of the above
Suspend simulation
End simulation
Exit simulator
Lời giải
Bạn cần đăng ký gói VIP ( giá chỉ từ 199K ) để làm bài, xem đáp án và lời giải chi tiết không giới hạn.
Câu 5
A. 6’b111000
B. 6’b011000
C. None of the above
D. 6’b111111
Lời giải
Bạn cần đăng ký gói VIP ( giá chỉ từ 199K ) để làm bài, xem đáp án và lời giải chi tiết không giới hạn.
Câu 6
100ns/110ps
1ns/1ps
100ns/100ps
10ns/1ps
Lời giải
Bạn cần đăng ký gói VIP ( giá chỉ từ 199K ) để làm bài, xem đáp án và lời giải chi tiết không giới hạn.
Câu 7
The “assign” statement implements continuous assignment between the expression specified on the right-hand side and a “net” type variable specified on the left-hand side
The “assign” statement implements continuous assignment between the expression specified on the right-hand side and a “reg” type variable specified on the left-hand side
None of these
The “assign” statement can be used to model a latch, which is a sequential circuit
Lời giải
Bạn cần đăng ký gói VIP ( giá chỉ từ 199K ) để làm bài, xem đáp án và lời giải chi tiết không giới hạn.