0
|
1 ;=============================================================================
|
|
2 ;
|
604
|
3 ; File icons.asm V2.99c
|
0
|
4 ;
|
275
|
5 ; Tables for all OSTC icons.
|
0
|
6 ;
|
|
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
|
|
8 ;=============================================================================
|
|
9 ; HISTORY
|
|
10 ; 2011-05-24 : [jDG] Creation with icons for demo menus.
|
|
11
|
604
|
12 #include "hwos.inc" ; Mandatory header
|
|
13
|
|
14 icons_data CODE
|
0
|
15
|
604
|
16 ;=============================================================================
|
|
17
|
|
18 ; dive mode warning icon
|
252
|
19 global dive_warning2_block
|
604
|
20 #include "../src/Icons/dive_warning2.inc" ; 45x39 px
|
|
21
|
0
|
22 ; small warning icon
|
|
23 ; global warning_block
|
604
|
24 ;#include "../src/Icons/warning.inc" ; 25x22 px
|
|
25
|
|
26 IFDEF _ostc_logo
|
275
|
27 global ostc_logo_block
|
604
|
28 ; OSTC logo
|
|
29 #include "../src/Icons/ostc_logo.inc" ; 220x61 px
|
|
30 ENDIF
|
0
|
31
|
604
|
32 END
|