static UWORD bptr10[9];

static UWORD bptr11[] = { 
  0x800,  0x4900,  0x2A00,  0x1C00,  0xFF80,  0x1C00,  0x2A00,  0x4900, 
  0x800
};

/*----- bitmap : w = 16, h = 9 ------ */
static struct BitMap bm_bptr1 = {
	2, 9, 0, 4,
	0,
	bptr10, bptr11, bptr10, bptr11,		/*  Trickery here  */
	0, 0, 0, 0
};

struct object ob_bptr1 = {
	&bm_bptr1,
	9, 9,
	1, NULL,
	0, 0, 0, 0, 0, 0, 0, 0,
	0			/*  Motionless (more or less)  */
};
