nord-format 0.1.1

Read and write Clavia / Nord keyboard file formats — programs, samples, set lists, settings, backups — with byte-exact round-trips
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! The `no3` organ (`.no3p`, `.no3t`) — container-verified, bodies unmapped.

use super::raw::raw_format;

raw_format!(
    /// Programs (`.no3p`).
    program,
    "no3p",
    204
);
raw_format!(
    /// Settings (`.no3t`).
    settings,
    "no3t",
    452
);