diff --git a/src/asm/jump_arm64_aapcs_pe_armasm.asm b/src/asm/jump_arm64_aapcs_pe_armasm.asm index 3100243d..afb6d2b2 100644 --- a/src/asm/jump_arm64_aapcs_pe_armasm.asm +++ b/src/asm/jump_arm64_aapcs_pe_armasm.asm @@ -45,7 +45,7 @@ ;* ------------------------------------------------- * ;* | 0xa0| 0xa4| 0xa8| 0xac| 0xb0| 0xb4| 0xb8| 0xbc| * ;* ------------------------------------------------- * -;* | fiber data| base | limit | dealloc | * +;* | base | limit | dealloc | fiber data| * ;* ------------------------------------------------- * ;* ------------------------------------------------- * ;* | 48 | 49 | 50 | 51 | | | * @@ -130,4 +130,4 @@ jump_fcontext proc ret x4 ENDP - END \ No newline at end of file + END diff --git a/src/asm/jump_arm64_aapcs_pe_armclang.S b/src/asm/jump_arm64_aapcs_pe_armclang.S index 0ad7ac1f..3a62562f 100644 --- a/src/asm/jump_arm64_aapcs_pe_armclang.S +++ b/src/asm/jump_arm64_aapcs_pe_armclang.S @@ -47,7 +47,7 @@ * ------------------------------------------------- * * | 0xa0| 0xa4| 0xa8| 0xac| 0xb0| 0xb4| 0xb8| 0xbc| * * ------------------------------------------------- * -* | fiber data| base | limit | dealloc | * +* | base | limit | dealloc | fiber data| * * ------------------------------------------------- * * ------------------------------------------------- * * | 48 | 49 | 50 | 51 | | | * diff --git a/src/asm/make_arm64_aapcs_pe_armasm.asm b/src/asm/make_arm64_aapcs_pe_armasm.asm index 50f9b698..c384af03 100644 --- a/src/asm/make_arm64_aapcs_pe_armasm.asm +++ b/src/asm/make_arm64_aapcs_pe_armasm.asm @@ -73,7 +73,7 @@ make_fcontext proc ; save top address of context_stack as 'base' str x3, [x0, #0xa0] - ; save bottom address of context-stack as 'limit' and 'dealloction stack' + ; save bottom address of context-stack as 'limit' and 'deallocation stack' sub x3, x3, x1 stp x3, x3, [x0, #0xa8] ; save 0 as 'fiber data' diff --git a/src/asm/make_arm64_aapcs_pe_armclang.S b/src/asm/make_arm64_aapcs_pe_armclang.S index cab00e92..761092f2 100644 --- a/src/asm/make_arm64_aapcs_pe_armclang.S +++ b/src/asm/make_arm64_aapcs_pe_armclang.S @@ -79,7 +79,7 @@ make_fcontext: // save top address of context_stack as 'base' str x3, [x0, #0xa0] - // save bottom address of context-stack as 'limit' and 'dealloction stack' + // save bottom address of context-stack as 'limit' and 'deallocation stack' sub x3, x3, x1 stp x3, x3, [x0, #0xa8] // save 0 as 'fiber data'