From 629443194591b27509360602caf6d4a037d7e80f Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sun, 18 Jan 2026 17:06:11 -0500 Subject: [PATCH] N163: change sysDef for a little convenience addit --- src/engine/sysDef.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/engine/sysDef.cpp b/src/engine/sysDef.cpp index 310a72364..a17d942b3 100644 --- a/src/engine/sysDef.cpp +++ b/src/engine/sysDef.cpp @@ -1237,10 +1237,12 @@ void DivEngine::registerSystems() { }, { {0x10, {DIV_CMD_WAVE, _("10xx: Select waveform")}}, - {0x11, {DIV_CMD_N163_WAVE_POSITION, _("11xx: Set waveform position in RAM")}}, - {0x12, {DIV_CMD_N163_WAVE_LENGTH, _("12xx: Set waveform length in RAM (04 to FC in steps of 4)")}}, - {0x15, {DIV_CMD_N163_WAVE_LOADPOS, _("15xx: Set waveform load position")}}, - {0x16, {DIV_CMD_N163_WAVE_LOADLEN, _("16xx: Set waveform load length (04 to FC in steps of 4)")}}, + {0x11, {DIV_CMD_N163_WAVE_POSITION, _("11xx: Set waveform playback position in RAM"),effectVal,constVal<1>}}, + {0x12, {DIV_CMD_N163_WAVE_LENGTH, _("12xx: Set waveform playback length in RAM (04 to FC in steps of 4)"),effectVal,constVal<1>}}, + {0x15, {DIV_CMD_N163_WAVE_POSITION, _("15xx: Set waveform load position"),effectVal,constVal<2>}}, + {0x16, {DIV_CMD_N163_WAVE_LENGTH, _("16xx: Set waveform load length (04 to FC in steps of 4)"),effectVal,constVal<2>}}, + {0x1a, {DIV_CMD_N163_WAVE_POSITION, _("1Axx: Set waveform playback and load position in RAM"),effectVal,constVal<3>}}, + {0x1b, {DIV_CMD_N163_WAVE_LENGTH, _("1Bxx: Set waveform playback and load length in RAM (04 to FC in steps of 4)"),effectVal,constVal<3>}}, } );