Skip to content

Commit

Permalink
Add arm asm/diasm features.
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackINT3 committed Oct 30, 2021
1 parent 979586d commit 8e391d6
Show file tree
Hide file tree
Showing 2 changed files with 956 additions and 984 deletions.
13 changes: 13 additions & 0 deletions src/OpenArk/coderkit/coderkit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,19 @@ QString CoderKit::NasmAsm(std::string data, int bits, const std::string &format)
return StrToQ(bin);
}

enum InstType
{
X16,
X86,
X64,
ARM_32,
ARM_64
};
QString CoderKit::Rasm2Asm(std::string data, InstType type, const std::string &format)
{
return "";
}

QString CoderKit::NasmDisasm(const std::string &data, int bits)
{
auto &&ndisasm = AppConfigDir() + L"\\nasm\\ndisasm.exe";
Expand Down
Loading

0 comments on commit 8e391d6

Please sign in to comment.