Skip to content

Instantly share code, notes, and snippets.

@retokromer
Last active December 11, 2015 10:05
Show Gist options
  • Save retokromer/f481f5168fad0c797517 to your computer and use it in GitHub Desktop.
Save retokromer/f481f5168fad0c797517 to your computer and use it in GitHub Desktop.
Unsigned Binary to Gray
unsigned int Bin_to_Gray(unsigned int b) {
return b ^ (b >> 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment