summaryrefslogtreecommitdiff
path: root/packages/libndsfpc/src/nds/system.inc
blob: 34edb63c0c7221881fa61c9b31571e981bd1cada (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
(*
  $Id: system.inc 25 2007-12-10 21:06:46Z p4p3r0 $
  ------------------------------------------------------------------------------
  	Copyright (C) 2005
  		Jason Rogers (dovoto)
  		Dave Murphy (WinterMute)
  	
  	This software is provided 'as-is', without any express or implied
  	warranty.  In no event will the authors be held liable for any
  	damages arising from the use of this software.
  	
  	Permission is granted to anyone to use this software for any
  	purpose, including commercial applications, and to alter it and
  	redistribute it freely, subject to the following restrictions:
  	
  	1.	The origin of this software must not be misrepresented; you
  		must not claim that you wrote the original software. If you use
  		this software in a product, an acknowledgment in the product
  		documentation would be appreciated but is not required.
  	
  	2.	Altered source versions must be plainly marked as such, and
  		must not be misrepresented as being the original software.
  	
  	3.	This notice may not be removed or altered from any source
  		distribution.
  ------------------------------------------------------------------------------
    
    
  Conversion by Legolas (http://itaprogaming.free.fr) for freepascal compiler
  (http://www.freepascal.org)
   
  Copyright (C) 2006  Francesco Lombardi
  Check http://sourceforge.net/projects/libndsfpc for updates
   
  ------------------------------------------------------------------------------

  $Log$

*)

{$ifdef NDS_INTERFACE}
const
  REG_DISPSTAT	: pcuint16 = pointer($04000004);
  DISP_IN_VBLANK  =  (1 shl 0);
  DISP_IN_HBLANK  =  (1 shl 1);
  DISP_YTRIGGERED =  (1 shl 2);
  DISP_VBLANK_IRQ =  (1 shl 3);
  DISP_HBLANK_IRQ =  (1 shl 4);
  DISP_YTRIGGER_IRQ = (1 shl 5);
{$endif NDS_INTERFACE}

{$ifdef NDS_IMPLEMENTATION}
procedure SetYtrigger(Yvalue: cint); inline;
begin
  REG_DISPSTAT^ := (REG_DISPSTAT^ and $007F ) or (Yvalue shl 8) or (( Yvalue and $100 ) shr 2);
end;
{$endif NDS_IMPLEMENTATION}

{$ifdef NDS_INTERFACE}
const
  REG_VCOUNT		: pcuint16 = pointer($04000006);
  HALT_CR       : pcuint16 = pointer($04000300);
  REG_POWERCNT  : pcuint16 = pointer($04000304);
{$endif NDS_INTERFACE}

{$ifdef NDS_IMPLEMENTATION}
procedure powerON(Aon: cint); inline; 
begin
  REG_POWERCNT^ := REG_POWERCNT^ or Aon;
end;

procedure powerSET(Aon: cint); inline; 
begin
  REG_POWERCNT^ := Aon;
end;

procedure powerOFF(off: cint); inline; 
begin
  REG_POWERCNT^ := REG_POWERCNT^ and (not off);
end;
{$endif NDS_IMPLEMENTATION}


{$ifdef ARM9}
{$ifdef NDS_INTERFACE}
{$ifdef DOXYGEN}
type
  ARM9_power = cint;
const  
  POWER_LCD       : ARM9_power = 0;
  POWER_2D_A      : ARM9_power = 1;
  POWER_MATRIX    : ARM9_power = 2;
  POWER_3D_CORE   : ARM9_power = 3;
  POWER_2D_B      : ARM9_power = 4;
  POWER_SWAP_LCDS : ARM9_power = 5;
{$else DOXYGEN}
const
  POWER_LCD			= (1 shl 0);
  POWER_2D_A		= (1 shl 1);
  POWER_MATRIX	= (1 shl 2);
  POWER_3D_CORE	= (1 shl 3);
  POWER_2D_B		= (1 shl 9);
  POWER_SWAP_LCDS	= (1 shl 15);
  POWER_ALL_2D    = (POWER_LCD or POWER_2D_A or POWER_2D_B);
  POWER_ALL       = (POWER_ALL_2D or POWER_3D_CORE or POWER_MATRIX);
{$endif DOXYGEN}
{$endif NDS_INTERFACE}

{$ifdef NDS_IMPLEMENTATION}
procedure lcdSwap(); inline; 
begin
  REG_POWERCNT^ := REG_POWERCNT^ xor POWER_SWAP_LCDS; 
end;

procedure lcdMainOnTop(); inline; 
begin
  REG_POWERCNT^ := REG_POWERCNT^ or cint(POWER_SWAP_LCDS); 
end;

procedure lcdMainOnBottom(); inline; 
begin
  REG_POWERCNT^ := REG_POWERCNT^ and (not cint(POWER_SWAP_LCDS)); 
end;
{$endif NDS_IMPLEMENTATION}
{$endif ARM9}

{$ifdef ARM7}
{$ifdef NDS_INTERFACE}
{$ifdef DOXYGEN}
type
  ARM7_power = cint;
const
    POWER_SOUND: ARM7_power = 0;	
    POWER_UNKNOWN: ARM7_power = 1;	
{$else DOXYGEN}
const
  POWER_SOUND  = (1 shl 0);
  POWER_UNKNOWN  = (1 shl 1);
{$endif DOXYGEN}
procedure readUserSettings(); cdecl; external;
{$endif NDS_INTERFACE}
{$endif ARM7}


{$ifdef NDS_INTERFACE}
type
  tPERSONAL_DATA = bitpacked record
    RESERVED0: array [0..1] of cuint8;
    
    theme: cuint8;
    birthMonth: cuint8;
    birthDay: cuint8;
    
    RESERVED1: array [0..0] of cuint8;
    
    name: array [0..9] of cint16;
    nameLen: cuint16;
    
    message: array [0..25] of cint16;
    messageLen: cuint16;
    
    alarmHour: cuint8;
    alarmMinute: cuint8;
    
    RESERVED2: array [0..3] of cuint8;
    
    calX1: cuint16;
    calY1: cuint16;
    calX1px: cuint8;
    calY1px: cuint8;
    
    calX2: cuint16;
    calY2: cuint16;
    calX2px: cuint8;
    calY2px: cuint8;
    
  
    _user_data: packed record
      language: 0..3;
      gbaScreen: 0..1;
      defaultBrightness: 0..2;
      autoMode: 0..1;
      RESERVED4: 0..1;
	    settingsLost: 0..1;	
	    RESERVED2: 0..6;
    end;
    RESERVED3: cuint16;
    rtcOffset: cuint32;
    RESERVED4: cuint32;
  end; 
  PERSONAL_DATA = tPERSONAL_DATA;
  PPERSONAL_DATA = ^tPERSONAL_DATA;

const
  REG_KEYINPUT	: pcuint16 = pointer($04000130);
  REG_KEYCNT		: pcuint16 = pointer($04000132);
  PersonalData  : PPERSONAL_DATA = pointer($27FFC80);


type 
  __argv = record 
    argvMagic: cint;		  // argv magic number, set to 0x5f617267 ('_arg') if valid 
    commandLine: pcchar;	// base address of command line, set of null terminated strings
    length: cint;			    // total length of command line
  end;
  Targv = __argv;
  Pargv = ^Targv;

const
  libnds_argv: Pargv = pointer($027FFF70);
  argvMagic = $5f617267;
{$endif NDS_INTERFACE}


{$ifdef NDS_INTERFACE}
procedure SetYtrigger(Yvalue: cint); inline;
procedure powerON(Aon: cint); inline; 
procedure powerSET(Aon: cint); inline; 
procedure powerOFF(off: cint); inline;
{$ifdef ARM9} 
procedure lcdSwap(); inline; 
procedure lcdMainOnTop(); inline; 
procedure lcdMainOnBottom(); inline; 
{$endif ARM9} 
{$endif NDS_INTERFACE}