libmsx
C library for MSX
Loading...
Searching...
No Matches
snd_i_table.h
Go to the documentation of this file.
1// -*- coding: utf-8-unix -*-
2/*
3 * Copyright (c) 2021-2024 Daishi Mori (mori0091)
4 *
5 * This software is released under the MIT License.\n
6 * See https://github.com/mori0091/libmsx/blob/main/LICENSE
7 *
8 * GitHub libmsx project\n
9 * https://github.com/mori0091/libmsx
10 */
20#ifndef SND_I_TABLE_H_
21#define SND_I_TABLE_H_
22
23#include <stdint.h>
24
47
73 const uint8_t wait;
75 const uint8_t * ad_part;
77 const uint8_t * s_part;
79 const uint8_t * r_part;
80};
81
84#endif // SND_I_TABLE_H_
const uint8_t wait
Wait counts (ticks per data chunk).
Definition snd_i_table.h:73
const uint8_t * r_part
Pointer to Release part of data stream.
Definition snd_i_table.h:79
const uint8_t * ad_part
Pointer to Atack..Decay part of data stream.
Definition snd_i_table.h:75
const uint8_t * s_part
Pointer to Sustain part of data stream.
Definition snd_i_table.h:77
Instrument (timbre) table.
Definition snd_i_table.h:64