mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-06 10:05:49 +00:00
cae34d61d1
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
29 lines
512 B
C++
29 lines
512 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <fstream>
|
|
|
|
#include <Register.h>
|
|
|
|
namespace Fuse {
|
|
class RegisterState {
|
|
public:
|
|
enum {
|
|
AF, BC, DE, HL, AF_, BC_, DE_, HL_, IX, IY, SP, PC, MEMPTR, NUMBER_OF_REGISTERS
|
|
};
|
|
std::vector<EightBit::register16_t> registers;
|
|
int i, r;
|
|
bool iff1, iff2;
|
|
int im;
|
|
bool halted;
|
|
int tstates;
|
|
|
|
public:
|
|
RegisterState();
|
|
|
|
void read(std::ifstream& file);
|
|
void readInternal(std::ifstream& file);
|
|
void readExternal(std::ifstream& file);
|
|
};
|
|
} |