Last change
on this file since cdb0f36 was f7428b1, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Started to rework include files.
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[f40a309] | 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 |
|
---|
[f7428b1] | 8 | The LCD character addresses start with (0,0) in the
|
---|
[f40a309] | 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 |
|
---|
[f7428b1] | 16 | #pragma once
|
---|
| 17 |
|
---|
[f40a309] | 18 | #define RP_PL 153 /* "R/P" underscore - "P" X left */
|
---|
| 19 | #define RP_PR 161 /* "R/P" underscore - "P" X right */
|
---|
| 20 | #define RP_RL 168 /* "R/P" underscore - "R" X left */
|
---|
| 21 | #define RP_RR 176 /* "R/P" underscore - "R" X right */
|
---|
| 22 | #define RP_Y 54 /* "R/P" underscore - Y */
|
---|
| 23 |
|
---|
| 24 | #define CK_XL 114 /* "Clock" underscore - X left */
|
---|
| 25 | #define CK_XR 143 /* "Clock" underscore - X right */
|
---|
| 26 | #define CK_Y 54 /* "Clock" underscore - Y */
|
---|
| 27 |
|
---|
| 28 | #define LAMP_XL 78
|
---|
[f7428b1] | 29 | #define LAMP_XR (LAMP_XL + 23)
|
---|
[f40a309] | 30 | #define LAMP_Y 54
|
---|
| 31 |
|
---|
| 32 | #define GOTO_XL 186
|
---|
[f7428b1] | 33 | #define GOTO_XR (GOTO_XL + 29)
|
---|
[f40a309] | 34 | #define GOTO_Y 54
|
---|
| 35 |
|
---|
| 36 | #define ASGN_XL 258
|
---|
[f7428b1] | 37 | #define ASGN_XR (ASGN_XL + 29)
|
---|
[f40a309] | 38 | #define ASGN_Y 54
|
---|
| 39 |
|
---|
| 40 | #define LOAD_XL 294
|
---|
[f7428b1] | 41 | #define LOAD_XR (LOAD_XL + 23)
|
---|
[f40a309] | 42 | #define LOAD_Y 54
|
---|
Note:
See
TracBrowser
for help on using the repository browser.