Forum Discussion
Altera_Forum
Honored Contributor
14 years agoyou can use them in functions and procedures too.
basically, anything in the architecture is a process, just if its placed outside an explicit process it is an implicit process sensitive to all the signals on the RHS: a <= b * c; is the same as: process(b, c) begin a <= b * c; end process;