Older Version Newer Version

Pawel_Koziol Pawel_Koziol Dec 30, 2014

**[[Home]] * [[Engines]] * [[CPW-Engine]] * movegen.h**

[[code format="cpp"]]
/*********************************************************************
*                              CPW-engine                            *
*           created by some members of Chessprogramming Wiki         *
*                                                                    *
* movegen.h - this file names functions coded within movegen.cpp.    *
* Only movegen() and movegen_sort() are used outside that file.      * 
*********************************************************************/

void movegen_push(char from, char to, U8 piece_from, U8 piece_cap, char flags);
void movegen_pawn_move(S8 sq, bool promotion_only);
void movegen_pawn_capt(S8 sq);
[[code]]
**[[CPW-Engine|Up one Level]]**