mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-07 23:25:00 +00:00
34 lines
533 B
C++
34 lines
533 B
C++
//
|
|
// Tape.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 06/11/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "Storage/Tape/Tape.hpp"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Analyser::Static::Oric {
|
|
|
|
struct File {
|
|
std::string name;
|
|
uint16_t starting_address;
|
|
uint16_t ending_address;
|
|
enum ProgramType {
|
|
BASIC,
|
|
MachineCode,
|
|
None
|
|
};
|
|
ProgramType data_type, launch_type;
|
|
std::vector<uint8_t> data;
|
|
};
|
|
|
|
std::vector<File> GetFiles(Storage::Tape::TapeSerialiser &);
|
|
|
|
}
|