Jspice3
pointrmp.c
Go to the documentation of this file.
1 /*************************************************************************
2  MFB graphics and miscellaneous library
3  Copyright (c) Stephen R. Whiteley 1992
4  Author: Stephen R. Whiteley
5  *************************************************************************/
6 
7 #include "mfb.h"
8 #include "mfbP.h"
9 
10 struct vga_cursor vgacur = {
11 
12 /* default graphics cursor */
13 {
14  0x7f,0xff,
15  0x7f,0xff,
16  0x7f,0xff,
17  0x7f,0xff,
18  0x7f,0xff,
19  0x7f,0xff,
20  0xff,0xff,
21  0xc0,0x81, /* and map */
22  0xff,0xff,
23  0x7f,0xff,
24  0x7f,0xff,
25  0x7f,0xff,
26  0x7f,0xff,
27  0x7f,0xff,
28  0x7f,0xff,
29  0xff,0xff,
30 
31  0x80,0x00,
32  0x80,0x00,
33  0x80,0x00,
34  0x80,0x00,
35  0x80,0x00,
36  0x80,0x00,
37  0x00,0x00,
38  0x3f,0x7e, /* xor map */
39  0x00,0x00,
40  0x80,0x00,
41  0x80,0x00,
42  0x80,0x00,
43  0x80,0x00,
44  0x80,0x00,
45  0x80,0x00,
46  0x00,0x00 }, { 0 } };
struct vga_cursor vgacur
Definition: pointrmp.c:10