1 /*
2     Sjeng - a chess variants playing program
3     Copyright (C) 2000-2001 Gian-Carlo Pascutto
4 
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9 
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14 
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 
19     File: squares.h
20     Purpose: contains squares definitions
21 
22 */
23 
24 #define A1 26
25 #define B1 27
26 #define C1 28
27 #define D1 29
28 #define E1 30
29 #define F1 31
30 #define G1 32
31 #define H1 33
32 
33 #define A2 38
34 #define B2 39
35 #define C2 40
36 #define D2 41
37 #define E2 42
38 #define F2 43
39 #define G2 44
40 #define H2 45
41 
42 #define A3 50
43 #define B3 51
44 #define C3 52
45 #define D3 53
46 #define E3 54
47 #define F3 55
48 #define G3 56
49 #define H3 57
50 
51 #define A4 62
52 #define B4 63
53 #define C4 64
54 #define D4 65
55 #define E4 66
56 #define F4 67
57 #define G4 68
58 #define H4 69
59 
60 #define A5 74
61 #define B5 75
62 #define C5 76
63 #define D5 77
64 #define E5 78
65 #define F5 79
66 #define G5 80
67 #define H5 81
68 #define A6 86
69 #define B6 87
70 #define C6 88
71 #define D6 89
72 #define E6 90
73 #define F6 91
74 #define G6 92
75 #define H6 93
76 
77 #define A7 98
78 #define B7 99
79 #define C7 100
80 #define D7 101
81 #define E7 102
82 #define F7 103
83 #define G7 104
84 #define H7 105
85 
86 #define A8 110
87 #define B8 111
88 #define C8 112
89 #define D8 113
90 #define E8 114
91 #define F8 115
92 #define G8 116
93 #define H8 117
94