Subversion Repositories freemyipod

Rev

Rev 530 | Rev 668 | Go to most recent revision | Details | Compare with Previous | 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
660 theseven 39
.global f_mkfat32_emcorelib
530 theseven 40
 
41
 
42
background_png_size:
43
.word background_png_end - background_png
44
 
45
darkener_png_size:
46
.word darkener_png_end - darkener_png
47
 
48
disclaimer_png_size:
49
.word disclaimer_png_end - disclaimer_png
50
 
51
actions_png_size:
52
.word actions_png_end - actions_png
53
 
54
 
55
flashscript:
56
 
57
.byte 0
58
.byte 0
59
.byte 0
60
.byte 1
61
.word f_boot_emcorelib
62
.word f_boot_emcorelib_end - f_boot_emcorelib
63
.ascii "libboot "
64
 
65
.byte 0
66
.byte 0
67
.byte 0
68
.byte 1
69
.word f_png_emcorelib
70
.word f_png_emcorelib_end - f_png_emcorelib
71
.ascii "libpng  "
72
 
73
.byte 0
74
.byte 2
75
.byte 0
76
.byte 1
77
.word f_umsboot_ipodclassic_ucl
78
.word f_umsboot_ipodclassic_ucl_end - f_umsboot_ipodclassic_ucl
79
.ascii "umsboot "
80
 
81
.byte 0
82
.byte 12
83
.byte 8
84
.byte 1
85
.word f_emcoreldr_ipodclassic_bin
86
.word f_emcoreldr_ipodclassic_bin_end - f_emcoreldr_ipodclassic_bin
87
 
88
.byte 0
89
.byte 2
90
.byte 0
91
.byte 1
92
.word f_emcore_ipodclassic_ucl
93
.word f_emcore_ipodclassic_ucl_end - f_emcore_ipodclassic_ucl
94
.ascii "emcore  "
95
 
96
.byte 0
97
.byte 0
98
.byte 0
99
.byte 1
100
.word f_ui_emcorelib
101
.word f_ui_emcorelib_end - f_ui_emcorelib
102
.ascii "libui   "
103
 
104
.byte 0
105
.byte 0
106
.byte 0
107
.byte 1
660 theseven 108
.word f_mkfat32_emcorelib
109
.word f_mkfat32_emcorelib_end - f_mkfat32_emcorelib
110
.ascii "libmkf32"
111
 
112
.byte 0
113
.byte 0
114
.byte 0
115
.byte 1
530 theseven 116
.word f_bootmenu_ipodclassic_emcoreapp
117
.word f_bootmenu_ipodclassic_emcoreapp_end - f_bootmenu_ipodclassic_emcoreapp
118
.ascii "bootmenu"
119
 
120
.byte 0
121
.byte 0
122
.byte 0
123
.byte 1
124
.word f_background_png
125
.word f_background_png_end - f_background_png
126
.ascii "backgrnd"
127
 
128
.byte 0
129
.byte 0
130
.byte 0
131
.byte 1
132
.word f_icons_png
133
.word f_icons_png_end - f_icons_png
134
.ascii "iconset "
135
 
136
.byte 0
137
.byte 0
138
.byte 0
139
.byte 1
140
.word f_rockbox_png
141
.word f_rockbox_png_end - f_rockbox_png
142
.ascii "rbxlogo "
143
 
144
.byte 0
145
.byte 2
146
.byte 0
147
.byte 1
148
.word f_rockbox_ipod_ucl
149
.word f_rockbox_ipod_ucl_end - f_rockbox_ipod_ucl
150
.ascii "rockbox "
151
 
152
.word 0
153
 
154
 
155
firstinstcost:
156
.word 0
157
firstinstscript:
158
.word 0
159
 
160
commoncost:
161
.word 0
162
commonscript:
163
.word 0
164
 
165
 
166
background_png:
167
.incbin "oobe/background.png"
168
background_png_end:
169
 
170
darkener_png:
171
.incbin "oobe/darkener.png"
172
darkener_png_end:
173
 
174
disclaimer_png:
175
.incbin "oobe/disclaimer.png"
176
disclaimer_png_end:
177
 
178
actions_png:
179
.incbin "oobe/actions.png"
180
actions_png_end:
181
 
182
.align 4
183
f_background_png:
184
.incbin "flashfiles/background.png"
185
f_background_png_end:
186
 
187
.align 4
188
f_icons_png:
189
.incbin "flashfiles/icons.png"
190
f_icons_png_end:
191
 
192
.align 4
193
f_rockbox_png:
194
.incbin "flashfiles/rockbox.png"
195
f_rockbox_png_end:
196
 
197
.align 4
198
f_boot_emcorelib:
199
.incbin "flashfiles/boot.emcorelib"
200
f_boot_emcorelib_end:
201
 
202
.align 4
203
f_png_emcorelib:
204
.incbin "flashfiles/png.emcorelib"
205
f_png_emcorelib_end:
206
 
207
.align 4
208
f_ui_emcorelib:
209
.incbin "flashfiles/ui.emcorelib"
210
f_ui_emcorelib_end:
211
 
212
.align 4
660 theseven 213
f_mkfat32_emcorelib:
214
.incbin "flashfiles/mkfat32.emcorelib"
215
f_mkfat32_emcorelib_end:
216
 
217
.align 4
530 theseven 218
f_bootmenu_ipodclassic_emcoreapp:
219
.incbin "flashfiles/bootmenu-ipodclassic.emcoreapp"
220
f_bootmenu_ipodclassic_emcoreapp_end:
221
 
222
.align 4
223
f_umsboot_ipodclassic_ucl:
224
.incbin "flashfiles/umsboot-ipodclassic.ucl"
225
f_umsboot_ipodclassic_ucl_end:
226
 
227
.align 4
228
f_rockbox_ipod_ucl:
229
.incbin "flashfiles/rockbox.ipod.ucl"
230
f_rockbox_ipod_ucl_end:
231
 
232
.align 4
233
f_emcore_ipodclassic_ucl:
234
.incbin "flashfiles/emcore-ipodclassic.ucl"
235
f_emcore_ipodclassic_ucl_end:
236
 
237
.align 4
238
f_emcoreldr_ipodclassic_bin:
239
.incbin "flashfiles/emcoreldr-ipodclassic.bin"
240
f_emcoreldr_ipodclassic_bin_end:
241
 
242
.align 2