git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6639 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8
2008-11-19 15:22:53 +00:00
parent ee6c452c81
commit 6f890d5b40
30 changed files with 47 additions and 47 deletions

View File

@@ -34,11 +34,11 @@
;------------------------------------------------------------------------------
InternalMemSetMem PROC USES rdi
push rcx ; push Buffer
mov rax, r8 ; rax = Value
mov rdi, rcx ; rdi = Buffer
mov rcx, rdx ; rcx = Count
mov rax, r8 ; rax = Value
mov rdi, rcx ; rdi = Buffer
mov rcx, rdx ; rcx = Count
rep stosb
pop rax ; rax = Buffer
pop rax ; rax = Buffer
ret
InternalMemSetMem ENDP