以下是三人表决器的verilogHDL程序,请判断是否正确。module vote (a,b,c,f);input a,b,c;output f;assign f=(a && b)|| (a && c) || (b && c);endmodule
查看答案
以下是Verilog设计四位加法器。请判读是否正确。module adder4 (a,b,y);input[3:0] a,b;output[4:0] y;assign y=a+b;endmodule
A. 对
B. 错
Verilog的数据类型有0、1、X、Z四种逻辑值。其中0、1、Z可综合,X表示不定值,通常只用在仿真中。
A. 对
B. 错
Verilog主要有net型、variable型两种,其中net型中常用的有wire、tri;variable型包括reg、integer等。
A. 对
B. 错
设A= 8'B1101_XX01,B=8'B1101_XX01则A==B 运算结果为X;A===B 运算结果为1
A. 对
B. 错