movePromoType function

int movePromoType(
  1. int m
)

Promotion piece type (knight..queen) for a promotion move.

Implementation

int movePromoType(int m) => knight + (moveFlag(m) & 0x3);