Subversion Repositories freemyipod

Rev

Rev 660 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
530 theseven 1
//
2
//
3
//    Copyright 2011 TheSeven
4
//
5
//
6
//    This file is part of emCORE.
7
//
8
//    emCORE is free software: you can redistribute it and/or
9
//    modify it under the terms of the GNU General Public License as
10
//    published by the Free Software Foundation, either version 2 of the
11
//    License, or (at your option) any later version.
12
//
13
//    emCORE is distributed in the hope that it will be useful,
14
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16
//    See the GNU General Public License for more details.
17
//
18
//    You should have received a copy of the GNU General Public License along
19
//    with emCORE.  If not, see <http://www.gnu.org/licenses/>.
20
//
21
//
22
 
23
 
24
.global background_png
25
.global background_png_size
26
.global darkener_png
27
.global darkener_png_size
28
.global disclaimer_png
29
.global disclaimer_png_size
30
.global actions_png
31
.global actions_png_size
32
.global flashscript
33
.global firstinstcost
34
.global firstinstscript
35
.global commoncost
36
.global commonscript
37
.global f_png_emcorelib
38
.global f_ui_emcorelib
39
 
40
 
41
background_png_size:
42
.word background_png_end - background_png
43
 
44
darkener_png_size:
45
.word darkener_png_end - darkener_png
46
 
47
disclaimer_png_size:
48
.word disclaimer_png_end - disclaimer_png
49
 
50
actions_png_size:
51
.word actions_png_end - actions_png
52
 
53
 
54
flashscript:
55
 
56
.byte 0
57
.byte 0
58
.byte 0
59
.byte 1
60
.word f_boot_emcorelib
61
.word f_boot_emcorelib_end - f_boot_emcorelib
62
.ascii "libboot "
63
 
64
.byte 0
65
.byte 0
66
.byte 0
67
.byte 1
68
.word f_png_emcorelib
69
.word f_png_emcorelib_end - f_png_emcorelib
70
.ascii "libpng  "
71
 
72
.byte 0
73
.byte 2
74
.byte 0
75
.byte 1
76
.word f_umsboot_ipodclassic_ucl
77
.word f_umsboot_ipodclassic_ucl_end - f_umsboot_ipodclassic_ucl
78
.ascii "umsboot "
79
 
80
.byte 0
81
.byte 12
82
.byte 8
83
.byte 1
84
.word f_emcoreldr_ipodclassic_bin
85
.word f_emcoreldr_ipodclassic_bin_end - f_emcoreldr_ipodclassic_bin
86
 
87
.byte 0
88
.byte 2
89
.byte 0
90
.byte 1
91
.word f_emcore_ipodclassic_ucl
92
.word f_emcore_ipodclassic_ucl_end - f_emcore_ipodclassic_ucl
93
.ascii "emcore  "
94
 
95
.byte 0
96
.byte 0
97
.byte 0
98
.byte 1
99
.word f_ui_emcorelib
100
.word f_ui_emcorelib_end - f_ui_emcorelib
101
.ascii "libui   "
102
 
103
.byte 0
104
.byte 0
105
.byte 0
106
.byte 1
107
.word f_bootmenu_ipodclassic_emcoreapp
108
.word f_bootmenu_ipodclassic_emcoreapp_end - f_bootmenu_ipodclassic_emcoreapp
109
.ascii "bootmenu"
110
 
111
.byte 0
112
.byte 0
113
.byte 0
114
.byte 1
115
.word f_background_png
116
.word f_background_png_end - f_background_png
117
.ascii "backgrnd"
118
 
119
.byte 0
120
.byte 0
121
.byte 0
122
.byte 1
123
.word f_icons_png
124
.word f_icons_png_end - f_icons_png
125
.ascii "iconset "
126
 
127
.byte 0
128
.byte 0
129
.byte 0
130
.byte 1
131
.word f_rockbox_png
132
.word f_rockbox_png_end - f_rockbox_png
133
.ascii "rbxlogo "
134
 
135
.byte 0
136
.byte 2
137
.byte 0
138
.byte 1
139
.word f_rockbox_ipod_ucl
140
.word f_rockbox_ipod_ucl_end - f_rockbox_ipod_ucl
141
.ascii "rockbox "
142
 
143
.word 0
144
 
145
 
146
firstinstcost:
147
.word 0
148
firstinstscript:
149
.word 0
150
 
151
commoncost:
152
.word 0
153
commonscript:
154
.word 0
155
 
156
 
157
background_png:
158
.incbin "oobe/background.png"
159
background_png_end:
160
 
161
darkener_png:
162
.incbin "oobe/darkener.png"
163
darkener_png_end:
164
 
165
disclaimer_png:
166
.incbin "oobe/disclaimer.png"
167
disclaimer_png_end:
168
 
169
actions_png:
170
.incbin "oobe/actions.png"
171
actions_png_end:
172
 
173
.align 4
174
f_background_png:
175
.incbin "flashfiles/background.png"
176
f_background_png_end:
177
 
178
.align 4
179
f_icons_png:
180
.incbin "flashfiles/icons.png"
181
f_icons_png_end:
182
 
183
.align 4
184
f_rockbox_png:
185
.incbin "flashfiles/rockbox.png"
186
f_rockbox_png_end:
187
 
188
.align 4
189
f_boot_emcorelib:
190
.incbin "flashfiles/boot.emcorelib"
191
f_boot_emcorelib_end:
192
 
193
.align 4
194
f_png_emcorelib:
195
.incbin "flashfiles/png.emcorelib"
196
f_png_emcorelib_end:
197
 
198
.align 4
199
f_ui_emcorelib:
200
.incbin "flashfiles/ui.emcorelib"
201
f_ui_emcorelib_end:
202
 
203
.align 4
204
f_bootmenu_ipodclassic_emcoreapp:
205
.incbin "flashfiles/bootmenu-ipodclassic.emcoreapp"
206
f_bootmenu_ipodclassic_emcoreapp_end:
207
 
208
.align 4
209
f_umsboot_ipodclassic_ucl:
210
.incbin "flashfiles/umsboot-ipodclassic.ucl"
211
f_umsboot_ipodclassic_ucl_end:
212
 
213
.align 4
214
f_rockbox_ipod_ucl:
215
.incbin "flashfiles/rockbox.ipod.ucl"
216
f_rockbox_ipod_ucl_end:
217
 
218
.align 4
219
f_emcore_ipodclassic_ucl:
220
.incbin "flashfiles/emcore-ipodclassic.ucl"
221
f_emcore_ipodclassic_ucl_end:
222
 
223
.align 4
224
f_emcoreldr_ipodclassic_bin:
225
.incbin "flashfiles/emcoreldr-ipodclassic.bin"
226
f_emcoreldr_ipodclassic_bin_end:
227
 
228
.align 2