mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
24 lines
394 B
C++
24 lines
394 B
C++
//
|
|
// 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
|
|
|
|
namespace Analyser {
|
|
namespace Static {
|
|
namespace AtariST {
|
|
|
|
struct Target: public ::Analyser::Static::Target {
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Analyser_Static_AtariST_Target_h */
|