Пример #1
0
 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()));
     }
 }
Пример #2
0
 public ay8910()
 {
     this.name = "AY-8910";
     this.sound_num = Mame.SOUND_AY8910;
     for (int i = 0; i < MAX_8910; i++) AYPSG[i] = new AY8910();
 }