OSDN Git Service

DMAドライバ. DrFSマイナーチェンジ
[vaneos/DivergeMirror.git] / include / Diverge / Cursol.h
1 /*
2         cursol.c
3         Cursol Control
4         (C) 2014-2015 VOSystems.
5 */
6
7 #ifndef Cursol_Ctrl_Diverge
8 #define Cursol_Ctrl_Diverge
9
10 struct curinfo{
11         unsigned short X,Y,pos;
12 };
13
14 enum VGA_PORTS{
15         CRTC_ADDR=0x3d4,
16         CRTC_DATA=0x3d5
17 };
18
19 enum CGTC_REGS{
20         CRTC_CURSOR_H=0x0e,
21         CRTC_CURSOR_L=0x0f,
22         CRTC_HEIGHT=0x0a
23 };
24
25
26 #endif