1
0
mirror of https://github.com/makarcz/vm6502.git synced 2024-06-25 13:29:32 +00:00
vm6502/MKBasic.h

19 lines
216 B
C
Raw Normal View History

#ifndef MKBASIC_H
#define MKBASIC_H
#include "VMachine.h"
namespace MKBasic {
class MKBasic : public VMachine
{
public:
MKBasic();
~MKBasic();
protected:
};
} // namespace MKBasic
#endif