1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-25 20:18:01 +00:00

Adds SZX support.

Tweaking exposed Spectrum state object as relevant.
This commit is contained in:
Thomas Harte
2021-04-26 20:47:28 -04:00
parent bd5dd9b9a3
commit b7a62e0121
10 changed files with 291 additions and 9 deletions

24
Storage/State/SZX.hpp Normal file
View File

@@ -0,0 +1,24 @@
//
// 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 */