source: buchla-68k/vlib/glcinit.x

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

Fixed integer width.

  • 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 uint8_t glc_is1[];
18extern uint8_t glc_is2[];
19extern int16_t lcdbase;
20extern int16_t lcdbit;
21extern int16_t lcdcol;
22extern int16_t lcdctl1;
23extern int16_t lcdctl2;
24extern int16_t lcdcurs;
25extern int16_t lcdrow;
26extern int16_t lcdx;
27extern int16_t lcdy;
28
29/*
30 =============================================================================
31 external functions
32 =============================================================================
33*/
34
35extern int16_t GLCcrc(int16_t row, int16_t col);
36extern void GLCcurs(int16_t crs);
37extern int16_t GLCcxy(int16_t x, int16_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(int16_t row, int16_t col, int8_t *s);
41extern void GLCwrts(int8_t *s);
Note: See TracBrowser for help on using the repository browser.