Forum Discussion
Altera_Forum
Honored Contributor
13 years agoIn the first piece of code (the not working one) in SEND_BYTES state you wrote:
tbyte = plain_text[byteN*8 +: 8]; What does that mean? I have never seen such a syntax. Is this a typo? I'd rather used: tbyte = plain_text[(byteN+1)*8: byteN*8];