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 committed by Kenneth J Davis
parent 7160ff10c2
commit 9c39f76155
1 changed files with 2 additions and 2 deletions

View File

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