Merge branch 'master' of git://localhost/acess2
[tpg/acess2.git] / KernelLand / Modules / Display / NVidia / regs.h
1 /*
2  * Acess2 NVidia Graphics Driver
3  * - By John Hodge (thePowersGang)
4  * 
5  * regs.h
6  * - Register definitions
7  */
8 #ifndef _NVIDIA__REGS_H_
9 #define _NVIDIA__REGS_H_
10
11 // CRT Controller Registers
12 enum eNVRegs_CRTC
13 {
14         NUM_CRTC_REGS
15 };
16
17 // Attribute Controller registers
18 enum eNVRegs_ATC
19 {
20         NUM_ATC_REGS
21 };
22
23 enum eNVRegs_GRC
24 {
25         NUM_GRC_REGS
26 };
27
28 // Sequencer registers
29 enum eNVRegs_SEQ
30 {
31         NUM_SEQ_REGS
32 };
33
34 struct sNVRegDump
35 {
36         Uint8   atc_regs[NUM_ATC_REGS];
37         Uint8   crtc_regs[NUM_CRTC_REGS];
38         Uint8   gra_regs[NUM_GRC_REGS];
39         Uint8   seq_regs[NUM_SEQ_REGS];
40 };
41
42 #endif
43

UCC git Repository :: git.ucc.asn.au