| 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 |
| r19391 | r19392 | |
|---|---|---|
| 163 | 163 | { |
| 164 | 164 | m_time_counter[i]++; |
| 165 | 165 | if(m_time_counter[i] != 0) |
| 166 | re | |
| 166 | break; | |
| 167 | 167 | } |
| 168 | ||
| 169 | m_data_out = (m_time_counter[4] == 0); | |
| 168 | 170 | } |
| 169 | 171 | else // parallel |
| 170 | 172 | { |
| r19391 | r19392 | |
| 174 | 176 | m_time_counter[2]++; |
| 175 | 177 | m_time_counter[3]++; |
| 176 | 178 | 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 | } | |
| 177 | 189 | } |
| 178 | 190 | |
| 179 | 191 | break; |
| Previous | 199869 Revisions | Next |