diff src/icons.asm @ 0:11d4fc797f74

init
author heinrichsweikamp
date Wed, 24 Apr 2013 19:22:45 +0200
parents
children e4e662746c02
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/icons.asm	Wed Apr 24 19:22:45 2013 +0200
@@ -0,0 +1,24 @@
+;=============================================================================
+;
+;   File icons.asm
+;
+;   Tables for all OSTC3 icons.
+;
+;   Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
+;=============================================================================
+; HISTORY
+;  2011-05-24 : [jDG] Creation with icons for demo menus.
+
+icons_data   CODE
+
+; Dive mode warning icon
+	global	dive_warning_block
+#include "../OSTC3/Icons/dive_warning.inc"	;45x39 px
+; small warning icon
+;	global	warning_block
+;#include "../OSTC3/Icons/warning.inc"       ;25x22 px
+	global	ostc3_logo_block
+; OSTC3 scribble
+#include "../OSTC3/Icons/ostc3_logo.inc"    ;220x61 px
+
+        END