Subversion Repositories freemyipod

Rev

Rev 843 | 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_png_emcorelib
62
.word f_png_emcorelib_end - f_png_emcorelib
63
.ascii "libpng  "
64
 
65
.byte 0
66
.byte 2
67
.byte 0
68
.byte 1
69
.word f_umsboot_ipodclassic_ucl
70
.word f_umsboot_ipodclassic_ucl_end - f_umsboot_ipodclassic_ucl
71
.ascii "umsboot "
72
 
73
.byte 0
74
.byte 12
75
.byte 8
76
.byte 1
77
.word f_emcoreldr_ipodclassic_bin
78
.word f_emcoreldr_ipodclassic_bin_end - f_emcoreldr_ipodclassic_bin
79
 
80
.byte 0
81
.byte 2
82
.byte 0
83
.byte 1
84
.word f_emcore_ipodclassic_ucl
85
.word f_emcore_ipodclassic_ucl_end - f_emcore_ipodclassic_ucl
86
.ascii "emcore  "
87
 
88
.byte 0
89
.byte 0
90
.byte 0
91
.byte 1
881 theseven 92
.word f_boot_emcorelib
93
.word f_boot_emcorelib_end - f_boot_emcorelib
94
.ascii "libboot "
95
 
96
.byte 0
97
.byte 0
98
.byte 0
99
.byte 1
530 theseven 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 2
122
.byte 0
123
.byte 1
124
.word f_rockbox_ipod_ucl
125
.word f_rockbox_ipod_ucl_end - f_rockbox_ipod_ucl
126
.ascii "rockbox "
127
 
128
.word 0
129
 
130
 
131
firstinstcost:
132
.word 0
668 theseven 133
commoncost:
843 theseven 134
.word 5
530 theseven 135
 
668 theseven 136
firstinstscript:
530 theseven 137
commonscript:
843 theseven 138
.word 1
139
.word apps_dirname
140
.word 1
141
 
142
.word 1
143
.word bootmenu_dirname
144
.word 1
145
 
146
.word 4
147
.word theme_emcoreapp_filename
148
.word f_theme_emcoreapp
149
.word f_theme_emcoreapp_end - f_theme_emcoreapp
150
.word 3
151
 
530 theseven 152
.word 0
153
 
154
 
155
background_png:
156
.incbin "oobe/background.png"
157
background_png_end:
158
 
159
darkener_png:
160
.incbin "oobe/darkener.png"
161
darkener_png_end:
162
 
163
disclaimer_png:
164
.incbin "oobe/disclaimer.png"
165
disclaimer_png_end:
166
 
167
actions_png:
168
.incbin "oobe/actions.png"
169
actions_png_end:
170
 
843 theseven 171
apps_dirname:
172
.ascii "/.apps\0"
173
 
174
bootmenu_dirname:
175
.ascii "/.apps/bootmenu\0"
176
 
177
theme_emcoreapp_filename:
178
.ascii "/.apps/bootmenu/theme.emcoreapp\0"
179
 
530 theseven 180
.align 4
181
f_boot_emcorelib:
182
.incbin "flashfiles/boot.emcorelib"
183
f_boot_emcorelib_end:
184
 
185
.align 4
186
f_png_emcorelib:
187
.incbin "flashfiles/png.emcorelib"
188
f_png_emcorelib_end:
189
 
190
.align 4
191
f_ui_emcorelib:
192
.incbin "flashfiles/ui.emcorelib"
193
f_ui_emcorelib_end:
194
 
195
.align 4
660 theseven 196
f_mkfat32_emcorelib:
197
.incbin "flashfiles/mkfat32.emcorelib"
198
f_mkfat32_emcorelib_end:
199
 
200
.align 4
530 theseven 201
f_bootmenu_ipodclassic_emcoreapp:
202
.incbin "flashfiles/bootmenu-ipodclassic.emcoreapp"
203
f_bootmenu_ipodclassic_emcoreapp_end:
204
 
205
.align 4
206
f_umsboot_ipodclassic_ucl:
207
.incbin "flashfiles/umsboot-ipodclassic.ucl"
208
f_umsboot_ipodclassic_ucl_end:
209
 
210
.align 4
211
f_rockbox_ipod_ucl:
212
.incbin "flashfiles/rockbox.ipod.ucl"
213
f_rockbox_ipod_ucl_end:
214
 
215
.align 4
216
f_emcore_ipodclassic_ucl:
217
.incbin "flashfiles/emcore-ipodclassic.ucl"
218
f_emcore_ipodclassic_ucl_end:
219
 
220
.align 4
221
f_emcoreldr_ipodclassic_bin:
222
.incbin "flashfiles/emcoreldr-ipodclassic.bin"
223
f_emcoreldr_ipodclassic_bin_end:
224
 
843 theseven 225
.align 4
226
f_theme_emcoreapp:
227
.incbin "fsfiles/.apps/bootmenu/theme.emcoreapp"
228
f_theme_emcoreapp_end:
229
 
881 theseven 230
.align 2