mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
29 lines
413 B
C++
29 lines
413 B
C++
|
//
|
||
|
// Target.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 09/03/2018.
|
||
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef Target_h
|
||
|
#define Target_h
|
||
|
|
||
|
#include "../StaticAnalyser.hpp"
|
||
|
|
||
|
namespace Analyser {
|
||
|
namespace Static {
|
||
|
namespace Acorn {
|
||
|
|
||
|
struct Target: public ::Analyser::Static::Target {
|
||
|
bool has_adfs;
|
||
|
bool has_dfs;
|
||
|
bool should_shift_restart;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif /* Target_h */
|