Commit 72382650 authored by Mans Rullgard's avatar Mans Rullgard

x86: fix rNmp macros with nasm

For some reason, nasm requires this.  No harm done to yasm.
Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent f295fee2
......@@ -139,10 +139,10 @@ CPU amdnop
%define r%1mp %2
%elif ARCH_X86_64 ; memory
%define r%1m [rsp + stack_offset + %3]
%define r%1mp qword r %+ %1m
%define r%1mp qword r %+ %1 %+ m
%else
%define r%1m [esp + stack_offset + %3]
%define r%1mp dword r %+ %1m
%define r%1mp dword r %+ %1 %+ m
%endif
%define r%1 %2
%endmacro
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment