Skip to content

Instantly share code, notes, and snippets.

@dcrystalj
Created June 5, 2014 13:35
Show Gist options
  • Save dcrystalj/27ff6725e1c33c9f4f36 to your computer and use it in GitHub Desktop.
Save dcrystalj/27ff6725e1c33c9f4f36 to your computer and use it in GitHub Desktop.
crc
R = 11111 M = podan
while (M != 0)
if (prvi bit pri r in m enak)
R = R << 1
else
R = R << 1
R = R xor G
M = M << 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment