RetroLinker
Linker for several 8-bit, 16-bit and 32-bit formats
|
Output format for the 6502 assembler xa. More...
#include <o65.h>
Classes | |
class | Module |
A object file typically contains a single module. More... | |
Public Member Functions | |
offset_t | GetModuleCount () |
std::unique_ptr< O65Format::Module > & | GetModule (offset_t index) |
std::unique_ptr< O65Format::Module > & | AddModule () |
void | Clear () override |
Resets all fields to their default values, deallocate memory. | |
void | ReadFile (Linker::Reader &rd) override |
Loads file into memory. | |
void | CalculateValues () |
offset_t | WriteFile (Linker::Writer &wr) const override |
Stores data in memory to file. | |
void | Dump (Dumper::Dumper &dump) const override |
Display file contents in a nice manner. | |
void | GenerateModule (Linker::Module &module) const override |
Loads the information into a module object, a convenience method when there is a single module generated. | |
![]() | |
virtual void | SetupOptions (std::shared_ptr< OutputFormat > format) |
Initializes the reader for linking purposes. | |
virtual void | ProduceModule (ModuleCollector &linker, Reader &rd, std::string file_name) |
Reads a file and loads the information into a module object. | |
virtual void | ProduceModule (Module &module, Reader &rd) |
Reads a file and loads the information into a module object, a convenience method when there is a single module generated. | |
virtual void | GenerateModule (ModuleCollector &linker, std::string file_name, bool is_library=false) const |
Loads the information into a module object. | |
virtual bool | FormatProvidesSegmentation () const |
Whether the format enables multiple x86 segments. | |
virtual bool | FormatRequiresDataStreamFix () const |
Whether the generated file might contain bugs that require fixing. | |
virtual bool | FormatProvidesResources () const |
Whether the format supports resources. | |
virtual bool | FormatProvidesLibraries () const |
Whether the format enables importing/exporting libraries. | |
![]() | |
Format (offset_t file_offset=0) | |
offset_t | ImageSize () const override |
Retrieves size of stored data. | |
offset_t | WriteFile (Writer &wr, offset_t count, offset_t offset=0) const override |
Writes data of non-zero filled sections. | |
![]() | |
virtual std::shared_ptr< const ActualImage > | AsImage () const |
Retrieves a randomly accessible image. | |
std::shared_ptr< ActualImage > | AsImage () |
Retrieves a randomly accessible image. | |
Protected Attributes | |
std::vector< std::unique_ptr< Module > > | modules |
Additional Inherited Members | |
![]() | |
offset_t | file_offset |
Output format for the 6502 assembler xa.
Documented here: http://www.6502.org/users/andre/o65/fileformat.html
|
overridevirtual |
Resets all fields to their default values, deallocate memory.
Reimplemented from Linker::Format.
|
overridevirtual |
Display file contents in a nice manner.
Reimplemented from Linker::Format.
|
overridevirtual |
Loads the information into a module object, a convenience method when there is a single module generated.
Reimplemented from Linker::InputFormat.
|
overridevirtual |
Loads file into memory.
Implements Linker::Format.
|
overridevirtual |
Stores data in memory to file.
Implements Linker::Format.