source: buchla-68k/include/lcdline.h

Last change on this file 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
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 character 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#pragma once
17
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
29#define LAMP_XR (LAMP_XL + 23)
30#define LAMP_Y 54
31
32#define GOTO_XL 186
33#define GOTO_XR (GOTO_XL + 29)
34#define GOTO_Y 54
35
36#define ASGN_XL 258
37#define ASGN_XR (ASGN_XL + 29)
38#define ASGN_Y 54
39
40#define LOAD_XL 294
41#define LOAD_XR (LOAD_XL + 23)
42#define LOAD_Y 54
Note: See TracBrowser for help on using the repository browser.