1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//!
//! XMrs is a Safe SoundTracker Library
//!
//! ```
//! module+--->instrument+--->instr_defaut+--->sample
//! | | +--->envelope
//! | | +--->vibrato
//! | +--->instr_ekn
//! | +--->instr_midi
//! | +--->instr_sid
//! | +-+->instr_robrs
//! | +--->instr_sid
//! +--->Pattern--->Row--->patternslot
//! ```
//!
//! You can load (and save) historical XM files using `xm` (see `README.md`)
//!
//! You can load (and save) your work using `load()` and `save()` serde fn
//!
/// Envelope with Steroid
/// Historical XM Instrument
/// Euclidian Rythm Instrument
/// Midi Instrument
/// Rob Hubbard Instrument
/// MOS6581 SID Instrument
/// Instrument with Steroid
/// SoundTracker Module with Steroid
/// A typical Note
/// A typical pattern slot
/// Sample with Steroid
/// Vibrato with Steroid
/// Load and Save Historical XM files
/// The Xmrs Prelude