Forum Discussion
Altera_Forum
Honored Contributor
8 years agoInstantiation Errors
Hello, I'm trying to reference my full adder module inside another module but seem to be getting lost somehow in the referencing. I keep getting the error Checker 'Full_Adder' not found. Insta...
Altera_Forum
Honored Contributor
8 years agoA module is not like a C function, it is like a chip on a circuit board, so it cannot be "called" inside sequential code. You must instantiate it on its own in parallel to your always block, and then use the sequential code to control the signals connected to it.