Skip to content

Commit

Permalink
dfgdfgdf
Browse files Browse the repository at this point in the history
  • Loading branch information
altalk23 committed Jun 2, 2024
1 parent fd15556 commit 917d979
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/generator/X64Generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,11 @@ Result<> X64HandlerGenerator::generateTrampoline(uint64_t target) {

a.updateLabels();

for (auto i = 0; i < a.m_buffer.size(); ++i) {
std::cout << std::hex << (int)a.m_buffer[i] << " ";
}
std::cout << std::endl;

auto codeSize = a.m_buffer.size();
auto areaSize = (codeSize + (0x20 - codeSize) % 0x20);

Expand Down

0 comments on commit 917d979

Please sign in to comment.