mirror of
https://github.com/cmosher01/v6502cpp.git
synced 2024-10-31 16:05:31 +00:00
29 lines
410 B
C++
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 */
|