- Timestamp:
- 09/04/2017 12:00:08 PM (7 years ago)
- Branches:
- master
- Children:
- 8c8b4e5
- Parents:
- 23e1597
- Location:
- vlib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vlib/glcinit.c
r23e1597 r5c4721b 47 47 #include "ram.h" 48 48 49 int 32_t lcdbase; /* LCD graphics base address */49 int16_t lcdbase; /* LCD graphics base address */ 50 50 int16_t lcdbit; /* LCD graphics pixel bit mask */ 51 51 int16_t lcdcol; /* LCD text column */ 52 52 int16_t lcdctl1; /* LCD display control -- command */ 53 53 int16_t lcdctl2; /* LCD display control -- data */ 54 int 32_t lcdcurs; /* LCD graphics pixel byte address */54 int16_t lcdcurs; /* LCD graphics pixel byte address */ 55 55 int16_t lcdrow; /* LCD text row */ 56 56 int16_t lcdx; /* LCD graphics x */ … … 203 203 int16_t GLCcxy(int16_t x, int16_t y) 204 204 { 205 register int 32_t curad, xby6;205 register int16_t curad, xby6; 206 206 207 207 /* calculate cursor address */ -
vlib/glcinit.x
r23e1597 r5c4721b 17 17 extern uint8_t glc_is1[]; 18 18 extern uint8_t glc_is2[]; 19 extern int 32_t lcdbase;19 extern int16_t lcdbase; 20 20 extern int16_t lcdbit; 21 21 extern int16_t lcdcol; 22 22 extern int16_t lcdctl1; 23 23 extern int16_t lcdctl2; 24 extern int 32_t lcdcurs;24 extern int16_t lcdcurs; 25 25 extern int16_t lcdrow; 26 26 extern int16_t lcdx;
Note:
See TracChangeset
for help on using the changeset viewer.