mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-03 23:52:28 +00:00
30 lines
468 B
C++
30 lines
468 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 23/09/2018.
|
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Analyser_Static_Sega_Target_h
|
|
#define Analyser_Static_Sega_Target_h
|
|
|
|
namespace Analyser {
|
|
namespace Static {
|
|
namespace Sega {
|
|
|
|
struct Target: public ::Analyser::Static::Target {
|
|
enum class Model {
|
|
MasterSystem,
|
|
SG1000
|
|
};
|
|
|
|
Model model = Model::MasterSystem;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Analyser_Static_Sega_Target_h */
|