2019-10-04 02:10:10 +00:00
|
|
|
//
|
|
|
|
// Target.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 03/06/2019.
|
|
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Analyser_Static_AtariST_Target_h
|
|
|
|
#define Analyser_Static_AtariST_Target_h
|
|
|
|
|
2020-03-20 03:24:06 +00:00
|
|
|
#include "../../../Reflection/Struct.hpp"
|
2020-03-15 04:13:38 +00:00
|
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
|
2019-10-04 02:10:10 +00:00
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
|
|
|
namespace AtariST {
|
|
|
|
|
2020-03-15 04:13:38 +00:00
|
|
|
struct Target: public Analyser::Static::Target, public Reflection::StructImpl<Target> {
|
|
|
|
Target() : Analyser::Static::Target(Machine::AtariST) {}
|
2019-10-04 02:10:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Analyser_Static_AtariST_Target_h */
|