Changeset 58756 in vbox
- Timestamp:
- Nov 18, 2015 11:55:07 PM (9 years ago)
- Location:
- trunk/src/VBox/Runtime/common/asm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/asm/ASMBitFirstClear.asm
r58755 r58756 91 91 xor eax, [es:xDI] ; eax = NOT [rdi] 92 92 %else 93 xor eax, [ edi] ; eax = NOT [rdi]93 xor eax, [xDI] ; eax = NOT [rdi] 94 94 %endif 95 95 sub xDI, xDX -
trunk/src/VBox/Runtime/common/asm/ASMBitFirstSet.asm
r58755 r58756 89 89 %if ARCH_BITS == 16 90 90 movzx edi, di 91 mov eax, [es:xDI] ; eax = NOT [rdi]91 mov eax, [es:xDI] 92 92 %else 93 mov eax, [ edi] ; eax = NOT [rdi]93 mov eax, [xDI] 94 94 %endif 95 95 sub xDI, xDX
Note:
See TracChangeset
for help on using the changeset viewer.