module alu64bit_test;
// Put your code here
// ------------------
reg [63:0] a;
reg [63:0] b;
reg cin;
reg [1:0] op;
wire [63:0] s;
wire cout;
// End of your code
alu64bit alu2(
.a(a),
.b(b),
.cin(cin),
.op({op[1],op[0]}),
.s(s),
.cout(cout)
);
initial begin
{a}=0;
{b}=0;
{b}=~b;
cin =0;
op[0]=1;
op[1]=0;
end
initial begin
#2000 a[0]=1;
//#2000 cin =~cin;
end
endmodule
вот код, я пытаюсь смоделировать этот тест, и никакие объекты не появляются в окне волны, другие тесты работают очень хорошо