Subversion Repositories freemyipod

Rev

Rev 668 | 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_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 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:
530 theseven 134
.word 0
135
 
668 theseven 136
firstinstscript:
530 theseven 137
commonscript:
138
.word 0
139
 
140
 
141
background_png:
142
.incbin "oobe/background.png"
143
background_png_end:
144
 
145
darkener_png:
146
.incbin "oobe/darkener.png"
147
darkener_png_end:
148
 
149
disclaimer_png:
150
.incbin "oobe/disclaimer.png"
151
disclaimer_png_end:
152
 
153
actions_png:
154
.incbin "oobe/actions.png"
155
actions_png_end:
156
 
157
.align 4
158
f_boot_emcorelib:
159
.incbin "flashfiles/boot.emcorelib"
160
f_boot_emcorelib_end:
161
 
162
.align 4
163
f_png_emcorelib:
164
.incbin "flashfiles/png.emcorelib"
165
f_png_emcorelib_end:
166
 
167
.align 4
168
f_ui_emcorelib:
169
.incbin "flashfiles/ui.emcorelib"
170
f_ui_emcorelib_end:
171
 
172
.align 4
660 theseven 173
f_mkfat32_emcorelib:
174
.incbin "flashfiles/mkfat32.emcorelib"
175
f_mkfat32_emcorelib_end:
176
 
177
.align 4
530 theseven 178
f_bootmenu_ipodclassic_emcoreapp:
179
.incbin "flashfiles/bootmenu-ipodclassic.emcoreapp"
180
f_bootmenu_ipodclassic_emcoreapp_end:
181
 
182
.align 4
183
f_umsboot_ipodclassic_ucl:
184
.incbin "flashfiles/umsboot-ipodclassic.ucl"
185
f_umsboot_ipodclassic_ucl_end:
186
 
187
.align 4
188
f_rockbox_ipod_ucl:
189
.incbin "flashfiles/rockbox.ipod.ucl"
190
f_rockbox_ipod_ucl_end:
191
 
192
.align 4
193
f_emcore_ipodclassic_ucl:
194
.incbin "flashfiles/emcore-ipodclassic.ucl"
195
f_emcore_ipodclassic_ucl_end:
196
 
197
.align 4
198
f_emcoreldr_ipodclassic_bin:
199
.incbin "flashfiles/emcoreldr-ipodclassic.bin"
200
f_emcoreldr_ipodclassic_bin_end:
201
 
202
.align 2