Skip to content

Commit

Permalink
5.6.16.0 Fixed ch9-18 address calculation for OPL3 for SCCI.
Browse files Browse the repository at this point in the history
  • Loading branch information
110-kenichi committed Aug 30, 2024
1 parent 71175f9 commit 0107567
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MAmidiMEmo 5.6.15.0 Itoken (c)2019, 2024 / GPL-2.0
MAmidiMEmo 5.6.16.0 Itoken (c)2019, 2024 / GPL-2.0

*** What is the MAmidiMEmo? ***

Expand Down Expand Up @@ -274,6 +274,7 @@ e.g.) YM2151 has 8ch FM sounds, so you can play 8 chords on MIDI 1ch or sharing
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SNQ9JE3JAQMNQ)

*** Changes
5.6.16.0 Fixed ch9-18 address calculation for OPL3 for SCCI.
5.6.15.0 Showed the program number name on ProgramNumbers property.
Fixed ModulationRateShift prop is not working property.
5.6.14.0 Added external tool path settings on the Option dialog. Youcan launch the tool from the FM Tone Editor.
Expand Down
2 changes: 1 addition & 1 deletion src/mamidimemo/instruments/Chips/YMF262.cs
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ private void YMF262WriteData(uint unitNumber, uint address, int op, int slot, by
//FormMain.OutputLog(this, (adrH + 1).ToString("x") + "," + data);
break;
case SoundEngineType.SPFM:
ScciManager.SetRegister(spfmPtr, address, data, false);
ScciManager.SetRegister(spfmPtr, (adrH << 7) | adr, data, false);
break;
}
}
Expand Down

0 comments on commit 0107567

Please sign in to comment.