mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
27 lines
442 B
C++
27 lines
442 B
C++
|
//
|
||
|
// Target.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 02/04/2018.
|
||
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef Analyser_Static_MSX_Target_h
|
||
|
#define Analyser_Static_MSX_Target_h
|
||
|
|
||
|
#include "../StaticAnalyser.hpp"
|
||
|
|
||
|
namespace Analyser {
|
||
|
namespace Static {
|
||
|
namespace MSX {
|
||
|
|
||
|
struct Target: public ::Analyser::Static::Target {
|
||
|
bool has_disk_drive = false;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif /* Analyser_Static_MSX_Target_h */
|