mirror of
https://github.com/makarcz/vm6502.git
synced 2024-12-28 05:29:47 +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.
21 lines
275 B
C++
21 lines
275 B
C++
#include "MKGenException.h"
|
|
|
|
namespace MKBasic {
|
|
|
|
MKGenException::MKGenException()
|
|
{
|
|
msCause = "Ouch!";
|
|
}
|
|
|
|
MKGenException::MKGenException(string cause)
|
|
{
|
|
msCause = cause;
|
|
}
|
|
|
|
string MKGenException::GetCause()
|
|
{
|
|
return msCause;
|
|
}
|
|
|
|
} // namespace MKBasic
|