source: buchla-68k/ram/tundsp.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.1 KB
Line 
1#pragma once
2
3#include "stdint.h"
4
5/*
6 =============================================================================
7 tundsp.c -- global variables
8 =============================================================================
9*/
10
11extern int8_t *tdlabl[];
12extern int16_t tunpal[16][3];
13
14/*
15 =============================================================================
16 tundsp.c -- global functions
17 =============================================================================
18*/
19
20extern void advtcur(void);
21extern void bsptcur(void);
22extern void dsttval(int16_t row, int16_t col, int16_t val, uint16_t fg, uint16_t bg);
23extern void gettun(int16_t n);
24extern void inittl(void);
25extern void inittt(int16_t n);
26extern void puttun(int16_t n);
27extern void td_incr(int16_t mode);
28extern void td_intp(int16_t mode);
29extern void td_trcp(int16_t mode);
30extern void tdswin(int16_t n);
31extern int16_t tt_incr(int16_t from, int16_t to);
32extern int16_t tt_intp(int16_t from, int16_t to);
33extern void tt_trcp(int16_t start, int16_t finish, int16_t dest);
34extern void tundsp(void);
35extern void twins(void);
36
Note: See TracBrowser for help on using the repository browser.