| 781 |
user890104 |
1 |
//
|
|
|
2 |
//
|
|
|
3 |
// Copyright 2011 TheSeven, user890104
|
|
|
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 icons_png
|
|
|
27 |
.global icons_png_size
|
|
|
28 |
.global rockbox_png
|
|
|
29 |
.global rockbox_png_size
|
|
|
30 |
.global crapple_png
|
|
|
31 |
.global crapple_png_size
|
|
|
32 |
|
|
|
33 |
background_png_size:
|
|
|
34 |
.word background_png_end - background_png
|
|
|
35 |
|
|
|
36 |
icons_png_size:
|
|
|
37 |
.word icons_png_end - icons_png
|
|
|
38 |
|
|
|
39 |
rockbox_png_size:
|
|
|
40 |
.word rockbox_png_end - rockbox_png
|
|
|
41 |
|
|
|
42 |
crapple_png_size:
|
|
|
43 |
.word crapple_png_end - crapple_png
|
|
|
44 |
|
|
|
45 |
|
|
|
46 |
background_png:
|
|
|
47 |
.incbin "images/background.png"
|
|
|
48 |
background_png_end:
|
|
|
49 |
|
|
|
50 |
icons_png:
|
|
|
51 |
.incbin "images/icons.png"
|
|
|
52 |
icons_png_end:
|
|
|
53 |
|
|
|
54 |
rockbox_png:
|
|
|
55 |
.incbin "images/rockbox.png"
|
|
|
56 |
rockbox_png_end:
|
|
|
57 |
|
|
|
58 |
crapple_png:
|
|
|
59 |
.incbin "images/crapple.png"
|
|
|
60 |
crapple_png_end:
|
|
|
61 |
|
|
|
62 |
.align 2
|