source: buchla-68k/ram/initi.x@ 6aa430b

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

More accurate headers.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#pragma once
2
3#include "instdsp.h"
4#include "stdint.h"
5
6/*
7 =============================================================================
8 initi.c -- global variables
9 =============================================================================
10*/
11
12extern uint16_t dfltins[];
13extern int16_t expbit[16];
14extern int16_t finival[13];
15extern int16_t ptoftab[];
16
17/*
18 =============================================================================
19 initi.c -- global functions
20 =============================================================================
21*/
22
23extern void initi(struct instdef *ip);
24extern void initil(void);
25extern void modinst(void);
26extern void newinst(int16_t inst);
27extern void newvce(int16_t voice);
28extern void pntsel(void);
29extern int16_t segtime(int16_t pn, uint16_t ptime);
30extern int16_t selpnt(void);
31extern void setinst(void);
32extern void setivce(int16_t voice);
33extern void setseg(int16_t pn, uint16_t ptime);
34extern int16_t timeto(int16_t fn, int16_t pj);
35extern int16_t ttox(uint16_t time, int16_t window);
36extern int16_t vtoy(int16_t val, int16_t window);
Note: See TracBrowser for help on using the repository browser.