12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* This file contains code for X-CHESS.
- Copyright (C) 1986 Free Software Foundation, Inc.
- This file is part of X-CHESS.
- X-CHESS is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY. No author or distributor
- accepts responsibility to anyone for the consequences of using it
- or for whether it serves any particular purpose or works at all,
- unless he says so in writing. Refer to the X-CHESS General Public
- License for full details.
- Everyone is granted permission to copy, modify and redistribute
- X-CHESS, but only under the conditions described in the
- X-CHESS General Public License. A copy of this license is
- supposed to have been given to you along with X-CHESS so you
- can know your rights and responsibilities. It should be in a
- file named COPYING. Among other things, the copyright notice
- and this notice must be preserved on all copies. */
- #define knight_small_width 32
- #define knight_small_height 32
- static short knight_small_bits[] = {
- 0x0000, 0x0000, 0x0600, 0x0080,
- 0xee00, 0x027f, 0xfe00, 0x017f,
- 0xff00, 0x04ff, 0xff00, 0x02ff,
- 0xff80, 0x09ff, 0xfcc0, 0x07ff,
- 0xfce0, 0x11ff, 0xffe0, 0x0dff,
- 0xffe0, 0x03ff, 0xfff0, 0x3fff,
- 0xfff0, 0x03ff, 0xfff0, 0x7fff,
- 0xfff8, 0x07ff, 0xc7fc, 0x7fff,
- 0xc1fe, 0x07ff, 0xc1fa, 0x7fff,
- 0xc0ce, 0x07ff, 0xc06c, 0x7fff,
- 0xe028, 0x07ff, 0xe000, 0x7fff,
- 0xe000, 0x0fff, 0xf000, 0x7fff,
- 0xf000, 0x0fff, 0xf000, 0x7fff,
- 0xf800, 0x0fff, 0xf800, 0x7fff,
- 0xfc00, 0x0fff, 0xff00, 0x7fff,
- 0x0000, 0x0000, 0x0000, 0x0000};
|