top.v 139 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
module inst(a,b);
output b;
input a;
assign b = ~a;
endmodule

module top(a,b);
input a;
output b;
inst inst(
.a(a),
.b(1'b1)
);
endmodule