source: buchla-68k/ram/initi.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.3 KB
Line 
1/*
2 =============================================================================
3 initi.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "instdsp.h"
10#include "stdint.h"
11
12/*
13 =============================================================================
14 external variables
15 =============================================================================
16*/
17
18extern uint16_t dfltins[];
19extern int16_t expbit[16];
20extern int16_t finival[13];
21extern int16_t ptoftab[];
22
23/*
24 =============================================================================
25 external functions
26 =============================================================================
27*/
28
29extern void initi(struct instdef *ip);
30extern void initil(void);
31extern void modinst(void);
32extern void newinst(int16_t inst);
33extern void newvce(int16_t voice);
34extern void pntsel(void);
35extern int16_t segtime(int16_t pn, uint16_t ptime);
36extern int16_t selpnt(void);
37extern void setinst(void);
38extern void setivce(int16_t voice);
39extern void setseg(int16_t pn, uint16_t ptime);
40extern int16_t timeto(int16_t fn, int16_t pj);
41extern int16_t ttox(uint16_t time, int16_t window);
42extern int16_t vtoy(int16_t val, int16_t window);
Note: See TracBrowser for help on using the repository browser.