Forum Discussion
Altera_Forum
Honored Contributor
13 years agoI was finally able to get to a computer with the latest tools and it turns out Daixiwen is correct regarding the need for output ports. As a test case I added a 32 bit output called "out" and assigned the value of "K" to that output in the initial process and the code compiles fine.
The changes I made were:
module DefRFID(testout);
output testout;
....
....
initial begin
....
K = pertubationfunction....
out <= K;