CRC16 with 4-bit input

J

Jaiphen

Guest
Does any know how to implement CRC16 generator with 4-bit data input?
I am thinking to implement it with some combinational logic instead of
store the info in a table. Thanks!
 
jaiphenh@yahoo.ca (Jaiphen) writes:

Does any know how to implement CRC16 generator with 4-bit data
input?
http://www.easics.com/webtools/crctool

Petter
--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
 
Write a function that implements the 1 bit transformation crc =
1bit_gen( crc , i0);
Then call it 4 times: crc =
1bit_gen( 1bit_gen( 1bit_gen( 1bit_gen( crc , i3) , i2) , i1) , i0);

bj


"Jaiphen" <jaiphenh@yahoo.ca> wrote in message
news:9e9b3797.0402040149.2a4d7827@posting.google.com...
Does any know how to implement CRC16 generator with 4-bit data input?
I am thinking to implement it with some combinational logic instead of
store the info in a table. Thanks!
 

Welcome to EDABoard.com

Sponsor

Back
Top