fxos/fxos/fxos-cli.h

21 lines
438 B
C++

//---
// fxos-cli: A disassembler and OS reverse-engineering tool
//---
#ifndef FXOS_CLI_H
#define FXOS_CLI_H
#include <fxos/target.h>
#include <fxos/library.h>
#include <string>
#include <vector>
/* Print general information on an OS file */
void os_info(FxOS::Target &target);
/* Disassemble */
void disassembly(FxOS::Library &library, FxOS::Target &target, uint32_t ref,
std::vector<std::string> passes);
#endif /* FXOS_CLI_H */