Skip to content

Instantly share code, notes, and snippets.

@pioz
Created November 9, 2011 17:28
Show Gist options
  • Save pioz/1352181 to your computer and use it in GitHub Desktop.
Save pioz/1352181 to your computer and use it in GitHub Desktop.
Code for accessing a square of the bitboard
typedef unsigned long long bboard; // 64 bit unsigned integer
bboard
get (bboard b, int square)
{
return (b & (1ULL << square));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment