prepare to add SMS platform

plays but no macro yet
This commit is contained in:
tildearrow 2021-05-15 14:18:16 -05:00
parent 9a97c38cc6
commit d9f076ef64
6 changed files with 110 additions and 1 deletions

View file

@ -33,6 +33,15 @@ bool DivEngine::perSystemEffect(int ch, unsigned char effect, unsigned char effe
return false;
}
break;
case DIV_SYSTEM_SMS:
switch (effect) {
case 0x20: // SN noise mode
dispatch->dispatch(DivCommand(DIV_CMD_STD_NOISE_MODE,ch,effectVal));
break;
default:
return false;
}
break;
default:
return false;
}