mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
b7a62e0121
Tweaking exposed Spectrum state object as relevant.
25 lines
435 B
C++
25 lines
435 B
C++
//
|
|
// SZX.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 26/04/2021.
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Storage_State_SZX_hpp
|
|
#define Storage_State_SZX_hpp
|
|
|
|
#include "../../Analyser/Static/StaticAnalyser.hpp"
|
|
|
|
namespace Storage {
|
|
namespace State {
|
|
|
|
struct SZX {
|
|
static std::unique_ptr<Analyser::Static::Target> load(const std::string &file_name);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* Storage_State_SZX_hpp */
|