mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-06 14:38:17 +01:00
interface/a32: Remove descriptor argument from Disassemble
This commit is contained in:
parent
3ccc415c52
commit
2796a85096
4 changed files with 7 additions and 13 deletions
|
|
@ -12,12 +12,6 @@
|
|||
|
||||
#include <dynarmic/A32/config.h>
|
||||
|
||||
namespace Dynarmic {
|
||||
namespace IR {
|
||||
class LocationDescriptor;
|
||||
}
|
||||
}
|
||||
|
||||
namespace Dynarmic {
|
||||
namespace A32 {
|
||||
|
||||
|
|
@ -92,10 +86,10 @@ public:
|
|||
}
|
||||
|
||||
/**
|
||||
* @param descriptor Basic block descriptor.
|
||||
* @return A string containing disassembly of the host machine code produced for the basic block.
|
||||
* Debugging: Disassemble all of compiled code.
|
||||
* @return A string containing disassembly of all host machine code produced.
|
||||
*/
|
||||
std::string Disassemble(const IR::LocationDescriptor& descriptor);
|
||||
std::string Disassemble() const;
|
||||
|
||||
private:
|
||||
bool is_executing = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue