gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 036e919bc52146cb98fe787f448953693b29b3f7
parent 0258ec91f2468e00ebdf52783e9da066ec882f22
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Mon, 29 Jul 2024 11:34:57 +0200

define some first basic midi types

Diffstat:
Msource/nord/n2x/n2xLib/n2xmiditypes.h | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/source/nord/n2x/n2xLib/n2xmiditypes.h b/source/nord/n2x/n2xLib/n2xmiditypes.h @@ -0,0 +1,15 @@ +#pragma once + +#include <cstdint> + +namespace n2x +{ + enum SysexByte : uint8_t + { + IdClavia = 0x33, + IdN2X = 0x04, + SingleDumpBankEditBuffer = 0x00, SingleDumpBankA = 0x01, SingleDumpBankB = 0x02, SingleDumpBankC = 0x03, SingleDumpBankD = 0x04, +// SingleRequestBankEditBuffer = 0x0a, SingleRequestBankA = 0x0b, SingleRequestBankB = 0x0c, SingleRequestBankC = 0x0d, SingleRequestBankD = 0x0e, + DefaultDeviceId = 0xf + }; +}