Subversion Repositories freemyipod

Rev

Rev 660 | Rev 768 | 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
668 theseven 157
commoncost:
530 theseven 158
.word 0
159
 
668 theseven 160
firstinstscript:
530 theseven 161
commonscript:
162
.word 0
163
 
164
 
165
background_png:
166
.incbin "oobe/background.png"
167
background_png_end:
168
 
169
darkener_png:
170
.incbin "oobe/darkener.png"
171
darkener_png_end:
172
 
173
disclaimer_png:
174
.incbin "oobe/disclaimer.png"
175
disclaimer_png_end:
176
 
177
actions_png:
178
.incbin "oobe/actions.png"
179
actions_png_end:
180
 
181
.align 4
182
f_background_png:
183
.incbin "flashfiles/background.png"
184
f_background_png_end:
185
 
186
.align 4
187
f_icons_png:
188
.incbin "flashfiles/icons.png"
189
f_icons_png_end:
190
 
191
.align 4
192
f_rockbox_png:
193
.incbin "flashfiles/rockbox.png"
194
f_rockbox_png_end:
195
 
196
.align 4
197
f_boot_emcorelib:
198
.incbin "flashfiles/boot.emcorelib"
199
f_boot_emcorelib_end:
200
 
201
.align 4
202
f_png_emcorelib:
203
.incbin "flashfiles/png.emcorelib"
204
f_png_emcorelib_end:
205
 
206
.align 4
207
f_ui_emcorelib:
208
.incbin "flashfiles/ui.emcorelib"
209
f_ui_emcorelib_end:
210
 
211
.align 4
660 theseven 212
f_mkfat32_emcorelib:
213
.incbin "flashfiles/mkfat32.emcorelib"
214
f_mkfat32_emcorelib_end:
215
 
216
.align 4
530 theseven 217
f_bootmenu_ipodclassic_emcoreapp:
218
.incbin "flashfiles/bootmenu-ipodclassic.emcoreapp"
219
f_bootmenu_ipodclassic_emcoreapp_end:
220
 
221
.align 4
222
f_umsboot_ipodclassic_ucl:
223
.incbin "flashfiles/umsboot-ipodclassic.ucl"
224
f_umsboot_ipodclassic_ucl_end:
225
 
226
.align 4
227
f_rockbox_ipod_ucl:
228
.incbin "flashfiles/rockbox.ipod.ucl"
229
f_rockbox_ipod_ucl_end:
230
 
231
.align 4
232
f_emcore_ipodclassic_ucl:
233
.incbin "flashfiles/emcore-ipodclassic.ucl"
234
f_emcore_ipodclassic_ucl_end:
235
 
236
.align 4
237
f_emcoreldr_ipodclassic_bin:
238
.incbin "flashfiles/emcoreldr-ipodclassic.bin"
239
f_emcoreldr_ipodclassic_bin_end:
240
 
241
.align 2