Skip to content

Commit

Permalink
Rename ARM64 assemble() function
Browse files Browse the repository at this point in the history
  • Loading branch information
YungRaj committed Feb 18, 2024
1 parent f139690 commit 9fde228
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arm64/Assemble.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4275,7 +4275,7 @@ namespace Arch
{
namespace Assembler
{
uint32_t assemble_instruction(char *ins)
uint32_t assembleInstruction(char *ins)
{
uint32_t assembly;

Expand Down
3 changes: 2 additions & 1 deletion arm64/Assemble.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ namespace Arch
namespace Assembler
{
uint32_t* assemble(char *ins, uint32_t *nins);
uint32_t assemble_instruction(char *ins);

uint32_t assembleInstruction(char *ins);
};
};
};

0 comments on commit 9fde228

Please sign in to comment.