Reed-Solomon encoder, Verilog

Status
Not open for further replies.

Djony1987

Newbie level 3
Joined
Dec 16, 2008
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Russia
Activity points
1,305
Hi,

In the attached file description of RS encoder (255, 223). Could you explain about this ratios?

Code:
begin
		y[0] = x[0] ^ x[3] ^ x[5] ^ x[6];
		y[1] = x[0] ^ x[1] ^ x[3] ^ x[4] ^ x[5] ^ x[7];
		y[2] = x[1] ^ x[2] ^ x[3] ^ x[4];
		y[3] = x[0] ^ x[2] ^ x[3] ^ x[4] ^ x[5];
		y[4] = x[0] ^ x[1] ^ x[3] ^ x[4] ^ x[5] ^ x[6];
		y[5] = x[0] ^ x[1] ^ x[2] ^ x[4] ^ x[5] ^ x[6] ^ x[7];
		y[6] = x[1] ^ x[2] ^ x[3] ^ x[5] ^ x[6] ^ x[7];
		y[7] = x[2] ^ x[4] ^ x[5] ^ x[7];
	end
for example...and so on...for every register.

Thank!
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…