Skip to content

Instantly share code, notes, and snippets.

@netalkGB
Last active December 1, 2021 16:02
Show Gist options
  • Select an option

  • Save netalkGB/c392bad03797d94067efd3819899b61a to your computer and use it in GitHub Desktop.

Select an option

Save netalkGB/c392bad03797d94067efd3819899b61a to your computer and use it in GitHub Desktop.
GS音源のSysExのチェックサム計算するやつ
function calculateChecksum(d) {
const a = d[5]
const b = d[6]
const c = d[7]
const data = d[8]
const result = 0x80 - (a + b + c + data) % 0x80
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment