A
Amir
Guest
Hi,
If I have a module
module m1(input in_1);
input [WIDTH-1:0] in_1;
.....
endmodule
in module top I want to drive zeros to m1,i.e.
module top();
m1 m1 ( .in_1 ((WIDTH)'h0 )); // how can I drive WIDTH bus zeros to
in_1 ?? in the example gave me error...
.....
endmodule
thanks
-Amir
If I have a module
module m1(input in_1);
input [WIDTH-1:0] in_1;
.....
endmodule
in module top I want to drive zeros to m1,i.e.
module top();
m1 m1 ( .in_1 ((WIDTH)'h0 )); // how can I drive WIDTH bus zeros to
in_1 ?? in the example gave me error...
.....
endmodule
thanks
-Amir