source: buchla-68k/ram/librw.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: 760 bytes
Line 
1#pragma once
2
3#include "stdint.h"
4
5/*
6 =============================================================================
7 librw.c -- global functions
8 =============================================================================
9*/
10
11extern int16_t get_asg(void);
12extern int16_t get_orc(int16_t lorh, int16_t kind);
13extern int16_t get_pat(void);
14extern int16_t get_scr(void);
15extern int16_t get_seq(void);
16extern int16_t get_tun(void);
17extern int16_t get_wav(void);
18extern int16_t wrt_asg(int16_t slot);
19extern int16_t wrt_orc(int16_t slot, int16_t lorh);
20extern int16_t wrt_pat(int16_t slot);
21extern int16_t wrt_scr(int16_t slot);
22extern int16_t wrt_seq(int16_t slot);
23extern int16_t wrt_tun(int16_t slot);
24extern int16_t wrt_wav(int16_t slot);
25
Note: See TracBrowser for help on using the repository browser.