mirror of
https://github.com/cmosher01/v6502cpp.git
synced 2025-01-30 13:30:30 +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 */
|