source: buchla-68k/ram/initi.x

Last change on this file was fa50076, checked in by Thomas Lopatic <thomas@…>, 6 years ago

Fixed initi.c.

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