Changeset 75129 in vbox for trunk/src/VBox/Runtime/common/string/bzero.asm
- Timestamp:
- Oct 28, 2018 5:00:27 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/bzero.asm
r69111 r75129 30 30 31 31 ;; 32 ; @param pvDst gcc: rdi msc: rcx x86:[esp+4] 33 ; @param cb gcc: rsi msc: rdx x86:[esp+8] 32 ; @param pvDst gcc: rdi msc: rcx x86:[esp+4] wcall:eax 33 ; @param cb gcc: rsi msc: rdx x86:[esp+8] wcall:edx 34 34 RT_NOCRT_BEGINPROC bzero 35 35 %ifdef RT_OS_DARWIN … … 71 71 push edi 72 72 73 %ifdef ASM_CALL32_WATCOM 74 mov ecx, edx 75 mov edi, eax 76 %else 73 77 mov ecx, [ebp + 0ch] 74 78 mov edi, [ebp + 08h] 79 %endif 75 80 xor eax, eax 76 81
Note:
See TracChangeset
for help on using the changeset viewer.