Skip to content

Commit 797f855

Browse files
committed
Changed assembler style.
1 parent f1e2f19 commit 797f855

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

NativeCore/Unix/DisassembleCode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
extern "C" bool DisassembleCode(RC_Pointer address, RC_Size length, RC_Pointer virtualAddress, InstructionData* instruction)
88
{
99
DISASM disasm = {};
10-
disasm.Options = NasmSyntax + PrefixedNumeral;
10+
disasm.Options = NasmSyntax;
1111
#ifdef NATIVE_CORE_64
1212
disasm.Archi = 64;
1313
#endif

NativeCore/Windows/DisassembleCode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
bool __stdcall DisassembleCode(RC_Pointer address, RC_Size length, RC_Pointer virtualAddress, InstructionData* instruction)
99
{
1010
DISASM disasm = {};
11-
disasm.Options = NasmSyntax + PrefixedNumeral;
11+
disasm.Options = NasmSyntax;
1212
#ifdef _WIN64
1313
disasm.Archi = 64;
1414
#endif

0 commit comments

Comments
 (0)