| 337 | |
| 338 | template <typename F> |
| 339 | void CRegisterDisplay::GetRegs(sound_chip_t Chip, F f, int count) { |
| 340 | for (int j = 0; j < count; ++j) { |
| 341 | auto pState = FTEnv.GetSoundGenerator()->GetRegState(Chip, f(j)); // // // |
| 342 | reg[j] = pState->GetValue(); |
| 343 | update[j] = pState->GetLastUpdatedTime() | (pState->GetNewValueTime() << 4); |
| 344 | } |
| 345 | } |
nothing calls this directly
no test coverage detected