Previous 199869 Revisions Next

r19392 Friday 7th December, 2012 at 16:05:56 UTC by Angelo Salese
Update of the previous commit, fixes Balance of Power (don't ask why the same exact MS-DOS version behaves differently on this ...), nw
[src/emu/machine]upd1990a.c

trunk/src/emu/machine/upd1990a.c
r19391r19392
163163         {
164164            m_time_counter[i]++;
165165            if(m_time_counter[i] != 0)
166               return;
166               break;
167167         }
168
169         m_data_out = (m_time_counter[4] == 0);
168170      }
169171      else // parallel
170172      {
r19391r19392
174176         m_time_counter[2]++;
175177         m_time_counter[3]++;
176178         m_time_counter[4]++;
179         m_data_out = (m_time_counter[4] == 0);
180         if(0)
181         {
182            int i;
183
184            for(i=0;i<5;i++)
185               printf("%02x ",m_time_counter[i]);
186
187            printf("\n");
188         }
177189      }
178190
179191      break;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team