mirror of
https://github.com/cmosher01/v6502cpp.git
synced 2024-10-31 16:05:31 +00:00
22 lines
324 B
C
22 lines
324 B
C
|
/*
|
||
|
* File: Cpu6502Helper.h
|
||
|
* Author: Christopher
|
||
|
*
|
||
|
* Created on December 12, 2013, 10:22 PM
|
||
|
*/
|
||
|
|
||
|
#ifndef CPU6502HELPER_H
|
||
|
#define CPU6502HELPER_H
|
||
|
|
||
|
class Cpu6502Helper {
|
||
|
public:
|
||
|
Cpu6502Helper();
|
||
|
Cpu6502Helper(const Cpu6502Helper& orig);
|
||
|
virtual ~Cpu6502Helper();
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif /* CPU6502HELPER_H */
|
||
|
|