reverse SQUARE nibbles to match SQ88 (now redundant macros)

This commit is contained in:
2021-10-31 08:28:43 +01:00
parent 4f582b6633
commit 2ae81fec99

View File

@@ -51,11 +51,11 @@ typedef unsigned char piece_t;
*/ */
typedef unsigned char square_t; typedef unsigned char square_t;
#define GET_F(s) ((s) >> 4) #define GET_R(s) ((s) >> 4)
#define GET_R(s) ((s) & 0x0f) #define GET_F(s) ((s) & 0x0f)
#define SET_F(s, f) ((s) &= 0x0f, (s) |= (f)<<4) #define SET_R(s, f) ((s) &= 0x0f, (s) |= (f)<<4)
#define SET_R(s, r) ((s) &= 0xf0, (s) |= (r)) #define SET_F(s, r) ((s) &= 0xf0, (s) |= (r))
#define SQUARE(f, r) ((f) << 4 | (r)) #define SQUARE(f, r) ((r) << 4 | (f))
/* castle_t bits structure /* castle_t bits structure
*/ */