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