Forum Discussion
Altera_Forum
Honored Contributor
13 years agoHi,
> constant preamble : STD_LOGIC_VECTOR (7 DOWNTO 0) := x'55555555555555'; That would still be wrong as you're trying to assign a 56 bit number to an eight bit vector. Do this: constant preamble : STD_LOGIC_VECTOR (55 DOWNTO 0) := x'55555555555555'; Good luck. Mark.