Forum Discussion
Altera_Forum
Honored Contributor
11 years agoYou may start defining your message array like this:
reg [7:0] message [29:0] Then you can use simple indexing to access each character. Moreover I would recommend using a clock and synchronous logic. Infact, always @* implies a purely combinatorial behaviour: this is usually not recommended, especially in your case which is basically a clock-driven process.