Last change
on this file since eee74cd was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Imported original source code.
|
-
Property mode
set to
100755
|
File size:
1.2 KB
|
Line | |
---|
1 | /*
|
---|
2 | =============================================================================
|
---|
3 | lcdline.h -- LCD line definitions
|
---|
4 | Version 3 -- 1988-08-03 -- D.N. Lynx Crowe
|
---|
5 |
|
---|
6 | Note: LCD characters are 5x7 in a 6x8 envelope.
|
---|
7 |
|
---|
8 | The LCD charcter addresses start with (0,0) in the
|
---|
9 | upper left corner. 8 rows of 85 characters.
|
---|
10 |
|
---|
11 | LCD graphic addresses start with (0,0) in the
|
---|
12 | lower left corner. 512 X pixels by 64 Y pixels.
|
---|
13 | =============================================================================
|
---|
14 | */
|
---|
15 |
|
---|
16 | #define RP_PL 153 /* "R/P" underscore - "P" X left */
|
---|
17 | #define RP_PR 161 /* "R/P" underscore - "P" X right */
|
---|
18 | #define RP_RL 168 /* "R/P" underscore - "R" X left */
|
---|
19 | #define RP_RR 176 /* "R/P" underscore - "R" X right */
|
---|
20 | #define RP_Y 54 /* "R/P" underscore - Y */
|
---|
21 |
|
---|
22 | #define CK_XL 114 /* "Clock" underscore - X left */
|
---|
23 | #define CK_XR 143 /* "Clock" underscore - X right */
|
---|
24 | #define CK_Y 54 /* "Clock" underscore - Y */
|
---|
25 |
|
---|
26 | #define LAMP_XL 78
|
---|
27 | #define LAMP_XR LAMP_XL+23
|
---|
28 | #define LAMP_Y 54
|
---|
29 |
|
---|
30 | #define GOTO_XL 186
|
---|
31 | #define GOTO_XR GOTO_XL+29
|
---|
32 | #define GOTO_Y 54
|
---|
33 |
|
---|
34 | #define ASGN_XL 258
|
---|
35 | #define ASGN_XR ASGN_XL+29
|
---|
36 | #define ASGN_Y 54
|
---|
37 |
|
---|
38 | #define LOAD_XL 294
|
---|
39 | #define LOAD_XR LOAD_XL+23
|
---|
40 | #define LOAD_Y 54
|
---|
Note:
See
TracBrowser
for help on using the repository browser.