comparison code_part1/OSTC_code_asm_part1/dd_font2display.asm @ 0:96a35aeda5f2

Initial setup
author heinrichsweikamp
date Tue, 12 Jan 2010 15:05:59 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:96a35aeda5f2
1
2 ; OSTC - diving computer code
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR
4
5 ; This program is free software: you can redistribute it and/or modify
6 ; it under the terms of the GNU General Public License as published by
7 ; the Free Software Foundation, either version 3 of the License, or
8 ; (at your option) any later version.
9
10 ; This program is distributed in the hope that it will be useful,
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ; GNU General Public License for more details.
14
15 ; You should have received a copy of the GNU General Public License
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18
19 ; DIGIT DRAW (dd)
20 ; routines for nice digit OLED output
21 ; written by: Christian Weikamp, info@heinrichsweikamp.com
22 ; written: 08/11/07
23 ; last updated: 12/17/07
24 ; known bugs:
25 ; ToDo:
26
27 ; -----------------------------
28 ; Routines, accessible
29 ; -----------------------------
30 ; DD_Main
31 ; DD_Graph_tissue
32 ; dd_print_mini_font
33
34 ; -----------------------------
35 ; DD_Main: (alpha)
36 ; -----------------------------
37 ; INPUT (for main only):
38 ; is different in mini_font and print graph
39 ; temp_font_select = width:0 (for digits before decpoint)
40 ; temp2_pointer_row = width:1
41 ; temp_pointer_column = width:2
42 ; temp2_pointer_column = width:3
43 ; temp_pointer_decpoint = width:4
44 ; temp_font_select = width:5 (for decpoint and following digits)
45 ; letter
46
47 DD_Main:
48 return
49 dd_print_mini_font:
50 return
51 DD_Graph_tissue:
52 return
53 DD_graf_Main:
54 return
55