v6502cpp/Trace.h

29 lines
410 B
C++

/*
* File: Trace.h
* Author: cmosher
*
* Created on December 12, 2013, 3:39 PM
*/
#ifndef TRACE_H
#define TRACE_H
class SegmentCache;
class Trace {
public:
Trace(const SegmentCache& s) : s(s) {}
virtual ~Trace() {}
void dumpSegments();
void dumpRegisters();
private:
Trace(const Trace&);
Trace& operator=(const Trace&);
const SegmentCache& s;
};
#endif /* TRACE_H */