I was thinking about the signal assignment in generally and I got into a dilemma.
If I have some project in which I have the following code:
ARCHITECTURE wait_example of wait_example IS
SIGNAL sendB, sendA : std_logic;
BEGIN
sendA <= ‘0’;
A : PROCESS
BEGIN
-- something
END PROCESS A;
B : PROCESS
BEGIN
-- something
END PROCESS B;
C : PROCESS
BEGIN
-- something
END PROCESS C;
And so on... I was thinking about when will the "sendA <='0';" part occurs? Only once in the beginning? Will it constantly reset sendA to 0? Or something else?
Thanks in advance, Bojan Matovski