Forum Discussion
Altera_Forum
Honored Contributor
15 years ago.rbf
But make sure you use the correct bit order. In some applications you need to flip the bits like this: out_byte[7] <= inByte[0]; out_byte[6] <= inByte[1]; out_byte[5] <= inByte[2]; out_byte[4] <= inByte[3]; out_byte[3] <= inByte[4]; out_byte[2] <= inByte[5]; out_byte[1] <= inByte[6]; out_byte[0] <= inByte[7];