我正在尝试设计一个简单的 8 位 2 的补码。这是我的代码:
twos_complement_of_8bits.v
//`include "complementor.v"
module twos_complement_of_8bits(output [7:0] out, input [7:0] in);
integer i;
initial
begin
for(i = 0; i <= 7; i = i + 1)
complementor C(out[i], in[i]);
end
assign out = out + 1;
endmodule
我在这一行遇到错误:
complementor C(out[i], in[i]);
Syntax error near 'C' found.
我该如何解决?