Forum Discussion
Altera_Forum
Honored Contributor
16 years agoWhat physical medium are you targeting with your "Wireless Transmission"? Is this sound, infra-red, light, RF or what???
For splitting up 8 bits into two 4 bit words you should simply take the first 4 bits and then the last four bits. e.g.
...
reg output_data;
wire first_four, last_four;
assign first_four = output_data;
assign last_four = output_data;
...