i have declared 2 procedures inside a process
architecture
.
.
process
proc1 ( sets signal A,B)
proc2 (sets signal A,B)
begin - process body
sets A
sets B
end process
it works ok, but i want to split the process in two processes
processA
sets signal A
end process
processB
sets signal B
end process
and therefore i need to put the procedures
under the architecture declaration in order to be visible by BOTH processes of the architecture. However the compile produces errors . .
Does anyone have an idea about what i am missing ?
architecture
.
.
process
proc1 ( sets signal A,B)
proc2 (sets signal A,B)
begin - process body
sets A
sets B
end process
it works ok, but i want to split the process in two processes
processA
sets signal A
end process
processB
sets signal B
end process
and therefore i need to put the procedures
under the architecture declaration in order to be visible by BOTH processes of the architecture. However the compile produces errors . .
Does anyone have an idea about what i am missing ?