Fix some ES5506 VGM write feature (but still incomplete)
8 bit addWrite because ES5506 host interface is 8 bit width.
This commit is contained in:
parent
4d7945f778
commit
205e2124b6
4 changed files with 162 additions and 70 deletions
|
|
@ -494,13 +494,11 @@ void putDispatchChip(void* data, int type) {
|
|||
ImGui::Text("- cycle: %d",ch->cycle);
|
||||
ImGui::Text("- curPage: %d",ch->curPage);
|
||||
ImGui::Text("- volScale: %d",ch->volScale);
|
||||
ImGui::Text("- maskedVal: %.2x",ch->maskedVal);
|
||||
ImGui::Text("- irqv: %.2x",ch->irqv);
|
||||
ImGui::Text("- curCR: %.8x",ch->curCR);
|
||||
ImGui::Text("- initChanMax: %d",ch->initChanMax);
|
||||
ImGui::Text("- chanMax: %d",ch->chanMax);
|
||||
COMMON_CHIP_DEBUG_BOOL;
|
||||
ImGui::TextColored(ch->isMasked?colorOn:colorOff,">> IsMasked");
|
||||
ImGui::TextColored(ch->isReaded?colorOn:colorOff,">> isReaded");
|
||||
ImGui::TextColored(ch->irqTrigger?colorOn:colorOff,">> IrqTrigger");
|
||||
break;
|
||||
|
|
@ -885,6 +883,7 @@ void putDispatchChan(void* data, int chanNum, int type) {
|
|||
ImGui::Text("- wave: %d",ch->wave);
|
||||
ImGui::Text("- VolMacroMax: %d",ch->volMacroMax);
|
||||
ImGui::Text("- PanMacroMax: %d",ch->panMacroMax);
|
||||
ImGui::Text("- CR: %.4x",ch->cr);
|
||||
ImGui::Text("* PCM:");
|
||||
ImGui::Text(" * index: %d",ch->pcm.index);
|
||||
ImGui::Text(" - next: %d",ch->pcm.next);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue