vlad928
Newbie level 1
I have a wire that I want to assign to my output. I have tried using x1 = out1 and it gives an error. Here is a pseudo code of what I am talking about.
Code Verilog - [expand] 1 2 3 4 5 6 7 8 9 10 module test (out1, in1); output out1; input in1; wire x1; not (x1, in1); wire x1 = out1; endmodule
Last edited by a moderator: