Guest
#4771611
In my code I have two instantiations of different modules: module1 myModule1 (in1, out1); module2 myModule2 (out1, out2); As you can see, my main goal is to make the input on my second module be dependent on the result of the output of my first module. However, to my understanding, out1 doesn't have a value at the beginning since everything happens at the same time and out1 hasn't been calculated from the first module. How am I supposed to go about this in code?