| 1152 | } |
| 1153 | |
| 1154 | UINT MockingboardCard::AY8910_SaveSnapshot(YamlSaveHelper& yamlSaveHelper, BYTE subunit, BYTE ay, const std::string& suffix) |
| 1155 | { |
| 1156 | _ASSERT(subunit < NUM_SUBUNITS_PER_MB && ay < NUM_AY8913_PER_SUBUNIT); |
| 1157 | m_MBSubUnit[subunit].ay8913[ay].SaveSnapshot(yamlSaveHelper, suffix); |
| 1158 | return 1; |
| 1159 | } |
| 1160 | |
| 1161 | UINT MockingboardCard::AY8910_LoadSnapshot(YamlLoadHelper& yamlLoadHelper, BYTE subunit, BYTE ay, const std::string& suffix) |
| 1162 | { |
nothing calls this directly
no test coverage detected