diff --git a/README.md b/README.md index 7946a4a..651526f 100644 --- a/README.md +++ b/README.md @@ -12,3 +12,10 @@ This is the repo for a checkers AI project. - all object files are dumped in here (clean commands cleans this directory up) * `build/runner` - When project is built it's compiled to the `runner` file + +## Implementation Details +Here is an example of the bit board setup this project follows: + +![bit board](/docs/bitboard.png) + +This orientation allows all moves to be done with either a 7 bit or 1 bit rotation. diff --git a/docs/bitboard.png b/docs/bitboard.png new file mode 100644 index 0000000..d0e1aae Binary files /dev/null and b/docs/bitboard.png differ