mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-04 12:05:03 +00:00
982bccf0c9
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
26 lines
465 B
C++
26 lines
465 B
C++
#include "stdafx.h"
|
|
#include "FuseTest.h"
|
|
|
|
void Fuse::Test::read(std::ifstream& file) {
|
|
|
|
finish = false;
|
|
do {
|
|
std::getline(file, description);
|
|
finish = file.eof();
|
|
} while (description.empty() && !finish);
|
|
|
|
if (finish)
|
|
return;
|
|
|
|
registerState.read(file);
|
|
|
|
bool complete = false;
|
|
do {
|
|
MemoryDatum memoryDatum;
|
|
memoryDatum.read(file);
|
|
complete = memoryDatum.finished();
|
|
if (!complete)
|
|
memoryData.push_back(memoryDatum);
|
|
} while (!complete);
|
|
}
|