意想不到的"结束"和" endmodule"在Verilog试验台?

时间:2016-11-12 08:27:01

标签: verilog

我正在开发一个Verilog项目,我需要找到4位二进制数的9的补码。我写了一个我认为应该可行的模块,但我在测试台上遇到了一个奇怪的错误:

module test_nine();

reg [3:0] A; //inputs

wire w,x,y,z; //outputs

integer loop_counter; //for loop counter

NinesComplement nc0(A[0],A[1],A[2],A[3],w,x,y,z);

initial
  begin

  for(loop_counter=0; loop_counter<16; loop_counter=loop_counter+1)
  begin
  #8 A=loop_counter;
  end

  #8 $finish()
  end
endmodule

当我运行它时,我收到一个错误:意外的令牌&#34;结束&#34;和&#34; endmodule&#34;找到。那些必要的吗?我基本上是从YouTube视频中学习Verilog,所以我可能错过了一些我认为的东西。如果错误出现在我的主模块中,我将在下面添加:

module NinesComplement(a,b,c,d,w,x,y,z);

//inputs
input a,b,c,d;

//outputs
output w,x,y,z;

//wires
wire ab,an,bn,cn,dn;


not #8
//creates a'
n0a(an,a),

//creates b'
n0b(bn,b),

//creates c'
n0c(cn,c),

//creates d'
n0d(dn,d);


and #8
a0a(ab,an,bn),

a0b(w,ab,cn),

a0c(y,c,c);

xor #8

x0a(x,b,c);


nand #8

n1a(z,dn,dn);

endmodule

感谢您的阅读,非常感谢任何帮助

1 个答案:

答案 0 :(得分:0)

每个语句都需要以分号结尾。在$finish

之后添加一个
  #8 $finish();