mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-16 13:04:48 +00:00
03975bd76b
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
28 lines
446 B
C++
28 lines
446 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);
|
|
};
|
|
} |