int Sound_GetNoteIndex(int base, int idx)
{
  int off = idx << 2;
  int addr = base + 0x1C58;
  addr += off;
  return *(int *)addr;
}
