Changeset f7428b1 in buchla-68k for include/lcdline.h


Ignore:
Timestamp:
07/10/2017 01:26:59 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
5fa506d
Parents:
c3aee8a
Message:

Started to rework include files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/lcdline.h

    rc3aee8a rf7428b1  
    66        Note:   LCD characters are 5x7 in a 6x8 envelope.
    77
    8                 The LCD charcter addresses start with (0,0) in the
     8                The LCD character addresses start with (0,0) in the
    99                upper left corner.  8 rows of 85 characters.
    1010
     
    1313   =============================================================================
    1414*/
     15
     16#pragma once
    1517
    1618#define RP_PL   153             /* "R/P" underscore - "P" X left */
     
    2527
    2628#define LAMP_XL 78
    27 #define LAMP_XR LAMP_XL+23
     29#define LAMP_XR (LAMP_XL + 23)
    2830#define LAMP_Y  54
    2931
    3032#define GOTO_XL 186
    31 #define GOTO_XR GOTO_XL+29
     33#define GOTO_XR (GOTO_XL + 29)
    3234#define GOTO_Y  54
    3335
    3436#define ASGN_XL 258
    35 #define ASGN_XR ASGN_XL+29
     37#define ASGN_XR (ASGN_XL + 29)
    3638#define ASGN_Y  54
    3739
    3840#define LOAD_XL 294
    39 #define LOAD_XR LOAD_XL+23
     41#define LOAD_XR (LOAD_XL + 23)
    4042#define LOAD_Y  54
Note: See TracChangeset for help on using the changeset viewer.