diff options
-rw-r--r-- | dynasm/dasm_x86.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dynasm/dasm_x86.lua b/dynasm/dasm_x86.lua index d7789ced..1b79d3af 100644 --- a/dynasm/dasm_x86.lua +++ b/dynasm/dasm_x86.lua | |||
@@ -1648,6 +1648,7 @@ end | |||
1648 | -- x64-specific opcode for 64 bit immediates and displacements. | 1648 | -- x64-specific opcode for 64 bit immediates and displacements. |
1649 | if x64 then | 1649 | if x64 then |
1650 | function map_op.mov64_2(params) | 1650 | function map_op.mov64_2(params) |
1651 | if not params then return { "reg, imm", "reg, [disp]", "[disp], reg" } end | ||
1651 | local opcode, op64, sz, rex | 1652 | local opcode, op64, sz, rex |
1652 | local op64 = match(params[1], "^%[%s*(.-)%s*%]$") | 1653 | local op64 = match(params[1], "^%[%s*(.-)%s*%]$") |
1653 | if op64 then | 1654 | if op64 then |