2016-09-11 21:09:00 +00:00
|
|
|
//
|
|
|
|
// File.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 10/09/2016.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-09-11 21:09:00 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef File_hpp
|
|
|
|
#define File_hpp
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
2016-09-11 21:09:00 +00:00
|
|
|
namespace Commodore {
|
|
|
|
|
|
|
|
struct File {
|
|
|
|
std::wstring name;
|
|
|
|
std::vector<uint8_t> raw_name;
|
|
|
|
uint16_t starting_address;
|
|
|
|
uint16_t ending_address;
|
2017-11-11 03:47:10 +00:00
|
|
|
bool is_locked = false;
|
|
|
|
bool is_closed = false;
|
2016-09-11 21:09:00 +00:00
|
|
|
enum {
|
|
|
|
RelocatableProgram,
|
|
|
|
NonRelocatableProgram,
|
|
|
|
DataSequence,
|
2016-09-15 11:54:42 +00:00
|
|
|
User,
|
|
|
|
Relative
|
2016-09-11 21:09:00 +00:00
|
|
|
} type;
|
|
|
|
std::vector<uint8_t> data;
|
|
|
|
|
|
|
|
bool is_basic();
|
|
|
|
};
|
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
}
|
2016-09-11 21:09:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* File_hpp */
|