source: buchla-68k/ram/instdsp.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.3 KB
Line 
1#pragma once
2
3#include "stdint.h"
4
5/*
6 =============================================================================
7 instdsp.c -- global variables
8 =============================================================================
9*/
10
11extern int16_t fnoff[13];
12extern int16_t idbox[][8];
13extern int8_t *idbxlbl[];
14extern int8_t idhlbl[];
15extern int16_t inspal[16][3];
16extern int8_t *osclbl[];
17extern int32_t rngdiv[];
18
19/*
20 =============================================================================
21 instdsp.c -- global functions
22 =============================================================================
23*/
24
25extern int16_t addpch(int16_t p1, int16_t p2);
26extern void allwins(void);
27extern void dosync(int16_t vce);
28extern void drawfn(int16_t fn, int16_t how, int16_t pen, int16_t wn);
29extern void drawpt(int16_t px, int16_t py, int16_t pc);
30extern void dswin(int16_t n);
31extern void idbord(void);
32extern void idcpfch(void);
33extern void idpoint(int16_t x, int16_t y, int16_t pen);
34extern void idvlblc(void);
35extern void idvlbld(void);
36extern void idvtyp(void);
37extern void instdsp(void);
38extern int16_t irand(int16_t range);
39extern void oscdsp(int16_t row, int16_t val, int16_t n, int16_t frq, int8_t *lbl);
40extern void pltws(uint16_t ws[], int16_t pen);
41extern void reshowi(void);
42extern int16_t xgetran(int16_t mlt);
43
Note: See TracBrowser for help on using the repository browser.