45 lines
815 B
C
45 lines
815 B
C
/*
|
|
* RoboPlay for MSX
|
|
* Copyright (C) 2022 by RoboSoft Inc.
|
|
*
|
|
* yrw801.h
|
|
*/
|
|
|
|
/* Cacodemon345: Added pointer structs from Linux */
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct
|
|
{
|
|
uint16_t tone;
|
|
int16_t pitch_offset;
|
|
uint8_t key_scaling;
|
|
int8_t panpot;
|
|
uint8_t vibrato;
|
|
uint8_t tone_attenuate;
|
|
uint8_t volume_factor;
|
|
uint8_t reg_lfo_vibrato;
|
|
uint8_t reg_attack_decay1;
|
|
uint8_t reg_level_decay2;
|
|
uint8_t reg_release_correction;
|
|
uint8_t reg_tremolo;
|
|
} YRW801_WAVE_DATA;
|
|
|
|
typedef struct
|
|
{
|
|
uint8_t key_min;
|
|
uint8_t key_max;
|
|
|
|
YRW801_WAVE_DATA wave_data;
|
|
} YRW801_REGION_DATA;
|
|
|
|
typedef struct
|
|
{
|
|
int count;
|
|
|
|
const YRW801_REGION_DATA* regions;
|
|
} YRW801_REGION_DATA_PTR;
|
|
|
|
extern const YRW801_REGION_DATA_PTR snd_yrw801_regions[0x81]; |