1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-02 20:30:00 +00:00
CLK/Machines/MSX/MSX.hpp

23 lines
289 B
C++
Raw Normal View History

2017-11-25 01:43:26 +00:00
//
// MSX.hpp
// Clock Signal
//
// Created by Thomas Harte on 24/11/2017.
// Copyright © 2017 Thomas Harte. All rights reserved.
//
#ifndef MSX_hpp
#define MSX_hpp
namespace MSX {
class Machine {
public:
virtual ~Machine();
static Machine *MSX();
};
}
#endif /* MSX_hpp */