mirror of https://github.com/FDOS/kernel.git
Fix ret in LSHLU/LSHRU long shift macros, since they already pop of stack.
This commit is contained in:
parent
7160ff10c2
commit
9c39f76155
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue