I need something to happen everytime I receive a 32 bit "word" from my serial bus. However, I only need it to hapen once. SB(31 downto 0) is the serial bus input. Is this:
process(SB(31 downto 0))
a valid way to do this? Or will the bits coming in cause the process to execute several times?
process(SB(31 downto 0))
a valid way to do this? Or will the bits coming in cause the process to execute several times?