FileFactory Module
Functions and values
Function or value | Description |
Full Usage:
FileFactory.load path bytes fmt isa regFactory baseAddrOpt
Parameters:
string
bytes : byte[]
fmt : FileFormat
isa : ISA
regFactory : IRegisterFactory
baseAddrOpt : uint64 option
Returns: IBinFile
|
Creates a binary file object from the given path and byte array representing the raw content of the file. The path to the binary file.The raw content of the binary file.The file format of the binary file.The target ISA of the binary file.The register factory for the target ISA.An optional base address for the binary file.
|
Full Usage:
FileFactory.loadELF path bytes regFactory baseAddrOpt
Parameters:
string
bytes : byte[]
regFactory : IRegisterFactory
baseAddrOpt : uint64 option
Returns: ELFBinFile
|
|