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

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

Fixed dopatch.c.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 =============================================================================
3 dopatch.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "patch.h"
10#include "stdint.h"
11
12/*
13 =============================================================================
14 external variables
15 =============================================================================
16*/
17
18extern int16_t cv2vce[];
19extern int16_t frq2par[];
20extern int16_t ind2par[];
21extern int8_t ledstat[24];
22extern int16_t lg2base[7];
23extern uint16_t seqdupd;
24extern uint8_t vgtype[];
25
26/*
27 =============================================================================
28 external functions
29 =============================================================================
30*/
31
32extern void dopatch(struct patch *pp);
33extern void pdoctl(int16_t voice, int16_t osc, int16_t dat1, int16_t dat2);
34extern void pdows(int16_t slot, int16_t voice, int16_t wsn);
35extern void pfpufn(int16_t voice, int16_t par, uint16_t dat1, uint16_t dat2);
Note: See TracBrowser for help on using the repository browser.