mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
43 lines
642 B
C++
43 lines
642 B
C++
//
|
|
// File.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 10/09/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef File_hpp
|
|
#define File_hpp
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace StaticAnalyser {
|
|
namespace Commodore {
|
|
|
|
struct File {
|
|
File() : is_closed(false), is_locked(false) {}
|
|
|
|
std::wstring name;
|
|
std::vector<uint8_t> raw_name;
|
|
uint16_t starting_address;
|
|
uint16_t ending_address;
|
|
bool is_locked;
|
|
bool is_closed;
|
|
enum {
|
|
RelocatableProgram,
|
|
NonRelocatableProgram,
|
|
DataSequence,
|
|
User,
|
|
Relative
|
|
} type;
|
|
std::vector<uint8_t> data;
|
|
|
|
bool is_basic();
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* File_hpp */
|