Difference between revisions of "CPW-Engine movegen h"

From Chessprogramming wiki
Jump to: navigation, search
(Created page with "'''Home * Engines * CPW-Engine * movegen.h''' <pre> /********************************************************************* *...")
 
(No difference)

Latest revision as of 16:27, 18 December 2018

Home * Engines * CPW-Engine * movegen.h

/*********************************************************************
*                              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);

Up one Level