private void ay_UpdateIRA(AY8910 sender, AyPortState state) { if (((state.OutState ^ state.OldOutState) & 64) != 0) { state.InState = (byte)((((state.OutState & 64) != 0) ? (this.ReadAyMouseY() | 64) : this.ReadAyMouseX())); } }
public ay8910() { this.name = "AY-8910"; this.sound_num = Mame.SOUND_AY8910; for (int i = 0; i < MAX_8910; i++) AYPSG[i] = new AY8910(); }