mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 19:05:32 +00:00
78e5451f93
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
20 lines
351 B
C++
20 lines
351 B
C++
#include "stdafx.h"
|
|
#include "FuseMemoryDatum.h"
|
|
|
|
void Fuse::MemoryDatum::read(std::ifstream& file) {
|
|
int begin;
|
|
file >> begin;
|
|
finish = (begin == -1);
|
|
if (finish)
|
|
return;
|
|
|
|
address = begin;
|
|
int byte;
|
|
bool completed = false;
|
|
do {
|
|
file >> byte;
|
|
completed = (byte == -1);
|
|
if (!completed)
|
|
bytes.push_back(byte);
|
|
} while (!completed);
|
|
} |