blob: 42da1454f04ed31434b47b65f0cbb5c3719a466b (
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
|
(*
$Id: nds.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
------------------------------------------------------------------------------
Use this file as inclusion if you don't want to use the nds7/nds9 ppu library:
program main;
{$apptype arm9} // or arm7
{$define arm9} // or arm7
{$mode objfpc}
uses
ctypes;
{$include nds.inc}
begin
// do stuff
end.
------------------------------------------------------------------------------
$Log$
*)
*
*
{$ifndef NDS_INC}
{$define NDS_INC}
{$J+}
{$INLINE ON}
{$MACRO ON}
{$PACKRECORDS C}
{$if not defined(ARM7) and not defined (ARM9)}
{$error Either ARM7 or ARM9 must be defined}
{$endif}
{$define NDS_INCLUSION}
{$define NDS_INTERFACE}
{$define NDS_IMPLEMENTATION}
{$include helper.inc}
{$include jtypes.inc}
{$include bios.inc}
{$include card.inc}
{$include dma.inc}
{$include interrupts.inc}
{$include ipc.inc}
{$include memory.inc}
{$include system.inc}
{$include timers.inc}
{$ifdef ARM9}
{$include arm9/background.inc}
{$include arm9/boxtest.inc}
{$include arm9/cache.inc}
{$include arm9/console.inc}
{$include arm9/exceptions.inc}
{$include arm9/image.inc}
{$include arm9/input.inc}
{$include arm9/math.inc}
{$include arm9/pcx.inc}
{ $include nds/arm9/postest.inc} // da rimuovere
{$include arm9/rumble.inc}
{$include arm9/sound.inc}
{$include arm9/trig_lut.inc}
{$include arm9/video.inc}
{$include arm9/videoGL.inc}
{$include arm9/sprite.inc}
{$endif ARM9}
{$ifdef ARM7}
{$include arm7/audio.inc}
{$include arm7/clock.inc}
{$include arm7/serial.inc}
{$include arm7/touch.inc}
{$endif ARM7}
{$ifdef ARM7}
{$linklib libnds7.a}
{$endif ARM7}
{$ifdef ARM9}
{$linklib libnds9.a}
{$endif ARM9}
{$linklib libc.a}
{$linklib libgcc.a}
{$linklib libsysbase.a}
{$endif NDS_INC}
|