Skip to content

Instantly share code, notes, and snippets.

@mdurys
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save mdurys/c318cc29a8f455ab200a to your computer and use it in GitHub Desktop.

Select an option

Save mdurys/c318cc29a8f455ab200a to your computer and use it in GitHub Desktop.
Do a circular right shift by $n bits on a 30-bit $value
$shifted = ($value >> $n) | ($value << (30 - $n) & 0x3fffffff);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment