mirror of
https://github.com/makarcz/vm6502.git
synced 2024-11-18 18:10:43 +00:00
67f1a62596
Version 2.0, full emulation of 6502 op-codes, fully tested and functional. Extended description in ReadMe file. Bin2Hex tool to convert binary images to memory definition format. Microchess, EhBasic added.
25 lines
378 B
C++
25 lines
378 B
C++
#ifndef MKGENEXCEPTION_H
|
|
#define MKGENEXCEPTION_H
|
|
|
|
#include <string>
|
|
#include <exception>
|
|
|
|
using namespace std;
|
|
|
|
namespace MKBasic {
|
|
|
|
class MKGenException : public exception {
|
|
public:
|
|
MKGenException();
|
|
MKGenException(string cause);
|
|
~MKGenException() throw() {};
|
|
string GetCause();
|
|
|
|
private:
|
|
string msCause;
|
|
};
|
|
|
|
} // namespace MKBasic
|
|
|
|
#endif
|