mirror of
https://github.com/jscrane/r65emu.git
synced 2024-11-16 21:10:58 +00:00
27 lines
513 B
C++
27 lines
513 B
C++
#ifndef __CPU_H__
|
|
#define __CPU_H__
|
|
|
|
#undef PC
|
|
|
|
class Stream;
|
|
|
|
class CPU: public Checkpointable {
|
|
public:
|
|
virtual void run(unsigned instructions) =0;
|
|
virtual void reset() =0;
|
|
virtual void raise(int level) =0;
|
|
virtual char *status(char *buf, size_t n, bool hdr) =0;
|
|
|
|
virtual void checkpoint(Stream &s) = 0;
|
|
virtual void restore(Stream &s) = 0;
|
|
|
|
inline bool halted() { return _halted; }
|
|
|
|
protected:
|
|
CPU(Memory &mem): _mem(mem), _halted(false) {}
|
|
Memory &_mem;
|
|
Memory::address PC;
|
|
bool _halted;
|
|
};
|
|
#endif
|