source: buchla-68k/ram/vtyper.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.1 KB
Line 
1/*
2 =============================================================================
3 vtyper.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 vtlin1[];
18extern int8_t vtlin2[];
19extern int8_t vtlin3[];
20
21/*
22 =============================================================================
23 external functions
24 =============================================================================
25*/
26
27extern void vtcxupd(void);
28extern void vtcyupd(void);
29extern void vtdisp(uint16_t *obj, uint16_t fg, uint16_t bg, int16_t row, int16_t col, int8_t *buf);
30extern void vtsetup(uint16_t *obj, int16_t (*dsp)(), int16_t col, int8_t *ptr, int16_t tr, int16_t tc, int16_t (*adv)(), int16_t (*bsp)(), int16_t (*cup)(), int16_t (*cdn)(), int16_t (*stop)(), uint16_t fg, uint16_t bg);
31extern int16_t vtyper(void);
Note: See TracBrowser for help on using the repository browser.