-
Notifications
You must be signed in to change notification settings - Fork 0
/
htable.inc
64 lines (64 loc) · 2.17 KB
/
htable.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;
; ***********************************************
; * MLN CLK *
; ***********************************************
; * File with definitions of MCU-to-LCD *
; * connections. *
; * Includes 4 arrays of 24 elements, one for *
; * each I/O port. *
; * Each array element is assigned *
; * to one number (for displaying hours). *
; * The numbers are displayed as follows: *
; * 0,1,2,3,4,5,6,7,8,9,10,11,12, *
; * 1,2,3,4,5,6,7,8,9,10,11. *
; * Numbers 0 - 12 *
; ***********************************************
; * V1: 31.01.2013 (THT version) *
; * V2: 18.05.2013 (SMD version) *
; * V3: 06.04.2015 (MK2, translated to eng) *
; * (C) 2013, 2015 by Albert Malina *
; ***********************************************
;
h_A:
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
;
h_B:
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000010, 0b00000010
.DB 0b00000010, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000010, 0b00000010
;
h_C:
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
.DB 0b00000000, 0b00000000, 0b00000000, 0b00000000
;0-0b00111111
;1-0b00001100
;2-0b01011011
;3-0b01011110
;4-0b01101100
;5-0b01110110
;6-0b01110111
;7-0b00011100
;8-0b01111111
;9-0b01111110
h_D:
.DB 0b00111111, 0b00001100, 0b01011011, 0b01011110
.DB 0b01101100, 0b01110110, 0b01110111, 0b00011100
.DB 0b01111111, 0b01111110, 0b00111111, 0b00001100
.DB 0b01011011, 0b00001100, 0b01011011, 0b01011110
.DB 0b01101100, 0b01110110, 0b01110111, 0b00011100
.DB 0b01111111, 0b01111110, 0b00111111, 0b00001100
;
; EOF htable.inc
;