Fix ret in LSHLU/LSHRU long shift macros, since they already pop of stack.

This commit is contained in:
Bart Oldeman 2018-02-22 12:28:46 -05:00
parent 0128621e1f
commit a3a3c2cfe9

View File

@ -128,7 +128,7 @@
%%loop: shl ax, 1 %%loop: shl ax, 1
rcl dx, 1 rcl dx, 1
loop %%loop loop %%loop
%%ret: ret 6 %%ret: ret
%endmacro %endmacro
%macro LSHRU 0 %macro LSHRU 0
@ -139,5 +139,5 @@
%%loop: shr dx, 1 %%loop: shr dx, 1
rcr ax, 1 rcr ax, 1
loop %%loop loop %%loop
%%ret: ret 6 %%ret: ret
%endmacro %endmacro