CorebootModulePkg: Fix various typos

Fix various typos in CorebootModulePkg.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Coeur <coeur@gmx.fr>
Reviewed-by: Benjamin You <benjamin.you@intel.com>
This commit is contained in:
Antoine Coeur
2019-02-07 00:46:58 +08:00
committed by Benjamin You
parent 68f87b2572
commit 06516768ed
10 changed files with 57 additions and 57 deletions

View File

@ -11,7 +11,7 @@
#
# Abstract:
#
# Switch the stack from temporary memory to permenent memory.
# Switch the stack from temporary memory to permanent memory.
#
#------------------------------------------------------------------------------
@ -36,20 +36,20 @@ ASM_PFX(SecSwitchStack):
#
# !!CAUTION!! this function address's is pushed into stack after
# migration of whole temporary memory, so need save it to permenent
# migration of whole temporary memory, so need save it to permanent
# memory at first!
#
movl 20(%esp), %ebx # Save the first parameter
movl 24(%esp), %ecx # Save the second parameter
#
# Save this function's return address into permenent memory at first.
# Then, Fixup the esp point to permenent memory
# Save this function's return address into permanent memory at first.
# Then, Fixup the esp point to permanent memory
#
movl %esp, %eax
subl %ebx, %eax
addl %ecx, %eax
movl 0(%esp), %edx # copy pushed register's value to permenent memory
movl 0(%esp), %edx # copy pushed register's value to permanent memory
movl %edx, 0(%eax)
movl 4(%esp), %edx
movl %edx, 4(%eax)
@ -57,17 +57,17 @@ ASM_PFX(SecSwitchStack):
movl %edx, 8(%eax)
movl 12(%esp), %edx
movl %edx, 12(%eax)
movl 16(%esp), %edx # Update this function's return address into permenent memory
movl 16(%esp), %edx # Update this function's return address into permanent memory
movl %edx, 16(%eax)
movl %eax, %esp # From now, esp is pointed to permenent memory
movl %eax, %esp # From now, esp is pointed to permanent memory
#
# Fixup the ebp point to permenent memory
# Fixup the ebp point to permanent memory
#
movl %ebp, %eax
subl %ebx, %eax
addl %ecx, %eax
movl %eax, %ebp # From now, ebp is pointed to permenent memory
movl %eax, %ebp # From now, ebp is pointed to permanent memory
popl %edx
popl %ecx