EightBit/LR35902/fusetest_LR35902/FuseExpectedTestResults.cpp
Adrian.Conlon 42b1b7dc53 Add a one off converter for Z80 -> LR35902 fuse tests (TBC!)
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
2017-08-10 23:46:41 +01:00

35 lines
731 B
C++

#include "stdafx.h"
#include "FuseExpectedTestResults.h"
void Fuse::ExpectedTestResults::read(std::ifstream& file) {
bool finished = false;
while (!file.eof()) {
ExpectedTestResult result;
result.read(file);
finished = result.finish;
if (!finished)
results[result.description] = result;
}
}
void Fuse::ExpectedTestResults::write(std::ofstream& file) {
for (auto result : results) {
result.second.write(file);
file << std::endl << std::endl;
}
}
void Fuse::ExpectedTestResults::read(std::string path) {
std::ifstream file;
file >> std::hex;
file.open(path);
read(file);
}
void Fuse::ExpectedTestResults::write(std::string path) {
std::ofstream file;
file << std::hex;
file.open(path);
write(file);
}