EightBit/LR35902/fusetest_LR35902/FuseRegisterState.h
Adrian.Conlon 129286f1a7 Ensure LR35902 fuse tests run successfully to completion.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
2017-09-07 01:15:28 +01:00

30 lines
484 B
C++

#pragma once
#include <vector>
#include <string>
#include <fstream>
#include <Register.h>
namespace Fuse {
class RegisterState {
public:
enum {
AF, BC, DE, HL, SP, PC, NUMBER_OF_REGISTERS
};
std::vector<EightBit::register16_t> registers;
bool halted;
int tstates;
public:
RegisterState();
void read(std::ifstream& file);
private:
void readInternal(std::ifstream& file);
void readExternal(std::ifstream& file);
static std::string hex(int value);
};
}