source: buchla-68k/vlib/glcinit.x@ 6262b5c

Last change on this file since 6262b5c was 6262b5c, checked in by Thomas Lopatic <thomas@…>, 7 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
11extern int8_t glc_is1[];
12extern int8_t glc_is2[];
13extern uint16_t lcdbase;
14extern uint16_t lcdbit;
15extern uint16_t lcdcol;
16extern uint16_t lcdctl1;
17extern uint16_t lcdctl2;
18extern uint16_t lcdcurs;
19extern uint16_t lcdrow;
20extern uint16_t lcdx;
21extern uint16_t lcdy;
22
23/*
24 =============================================================================
25 glcinit.c -- global functions
26 =============================================================================
27*/
28
29extern uint16_t GLCcrc(uint16_t row, uint16_t col);
30extern void GLCcurs(int16_t crs);
31extern uint16_t GLCcxy(uint16_t x, uint16_t y);
32extern void GLCdisp(int16_t dsp, int16_t crs, int16_t blk1, int16_t blk2, int16_t blk3);
33extern void GLCinit(void);
34extern void GLCtext(uint16_t row, uint16_t col, int8_t *s);
35extern void GLCwrts(int8_t *s);
36
Note: See TracBrowser for help on using the repository browser.