source: buchla-68k/vlib/glcinit.x@ 526a993

Last change on this file since 526a993 was 526a993, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Wording change.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 =============================================================================
3 glcinit.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "stdint.h"
10
11/*
12 =============================================================================
13 external variables
14 =============================================================================
15*/
16
17extern int8_t glc_is1[];
18extern int8_t glc_is2[];
19extern uint16_t lcdbase;
20extern uint16_t lcdbit;
21extern uint16_t lcdcol;
22extern uint16_t lcdctl1;
23extern uint16_t lcdctl2;
24extern uint16_t lcdcurs;
25extern uint16_t lcdrow;
26extern uint16_t lcdx;
27extern uint16_t lcdy;
28
29/*
30 =============================================================================
31 external functions
32 =============================================================================
33*/
34
35extern uint16_t GLCcrc(uint16_t row, uint16_t col);
36extern void GLCcurs(int16_t crs);
37extern uint16_t GLCcxy(uint16_t x, uint16_t y);
38extern void GLCdisp(int16_t dsp, int16_t crs, int16_t blk1, int16_t blk2, int16_t blk3);
39extern void GLCinit(void);
40extern void GLCtext(uint16_t row, uint16_t col, int8_t *s);
41extern void GLCwrts(int8_t *s);
Note: See TracBrowser for help on using the repository browser.