|
Last change
on this file since 6262b5c was 6262b5c, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Added include files for global functions and variables.
|
-
Property mode
set to
100644
|
|
File size:
1.0 KB
|
| Line | |
|---|
| 1 | #pragma once
|
|---|
| 2 |
|
|---|
| 3 | #include "stdint.h"
|
|---|
| 4 |
|
|---|
| 5 | /*
|
|---|
| 6 | =============================================================================
|
|---|
| 7 | glcinit.c -- global variables
|
|---|
| 8 | =============================================================================
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | extern int8_t glc_is1[];
|
|---|
| 12 | extern int8_t glc_is2[];
|
|---|
| 13 | extern uint16_t lcdbase;
|
|---|
| 14 | extern uint16_t lcdbit;
|
|---|
| 15 | extern uint16_t lcdcol;
|
|---|
| 16 | extern uint16_t lcdctl1;
|
|---|
| 17 | extern uint16_t lcdctl2;
|
|---|
| 18 | extern uint16_t lcdcurs;
|
|---|
| 19 | extern uint16_t lcdrow;
|
|---|
| 20 | extern uint16_t lcdx;
|
|---|
| 21 | extern uint16_t lcdy;
|
|---|
| 22 |
|
|---|
| 23 | /*
|
|---|
| 24 | =============================================================================
|
|---|
| 25 | glcinit.c -- global functions
|
|---|
| 26 | =============================================================================
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | extern uint16_t GLCcrc(uint16_t row, uint16_t col);
|
|---|
| 30 | extern void GLCcurs(int16_t crs);
|
|---|
| 31 | extern uint16_t GLCcxy(uint16_t x, uint16_t y);
|
|---|
| 32 | extern void GLCdisp(int16_t dsp, int16_t crs, int16_t blk1, int16_t blk2, int16_t blk3);
|
|---|
| 33 | extern void GLCinit(void);
|
|---|
| 34 | extern void GLCtext(uint16_t row, uint16_t col, int8_t *s);
|
|---|
| 35 | extern void GLCwrts(int8_t *s);
|
|---|
| 36 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.