v6502cpp/Trace.h

29 lines
440 B
C
Raw Normal View History

2013-12-12 22:05:33 +00:00
/*
* 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() const;
void dumpRegisters() const;
2013-12-12 22:05:33 +00:00
private:
Trace(const Trace&) = delete;
Trace& operator=(const Trace&) = delete;
2013-12-12 22:05:33 +00:00
const SegmentCache& s;
};
#endif /* TRACE_H */