Subversion Repositories freemyipod

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
768 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
 
31
background_png_size:
32
.word background_png_end - background_png
33
 
34
icons_png_size:
35
.word icons_png_end - icons_png
36
 
37
rockbox_png_size:
38
.word rockbox_png_end - rockbox_png
39
 
40
 
41
background_png:
42
.incbin "images/background.png"
43
background_png_end:
44
 
45
icons_png:
46
.incbin "images/icons.png"
47
icons_png_end:
48
 
49
rockbox_png:
50
.incbin "images/rockbox.png"
51
rockbox_png_end:
52
 
53
.align 2