From 5596966df010753fd3d04c12e4ce06288c64cf0a Mon Sep 17 00:00:00 2001 From: Sun Yimin Date: Fri, 30 Aug 2024 11:42:09 +0800 Subject: [PATCH] Updated Golang ppc64x asm Reference (markdown) --- Golang-ppc64x-asm-Reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Golang-ppc64x-asm-Reference.md b/Golang-ppc64x-asm-Reference.md index 0684c61..7983320 100644 --- a/Golang-ppc64x-asm-Reference.md +++ b/Golang-ppc64x-asm-Reference.md @@ -82,7 +82,7 @@ - **LXVDSX** "Load Vector Doubleword Scalar Indexed". This instruction is used to load a doubleword (64-bit element) from memory into a vector register.从指定内存位置加载64位数据,将其存储到目标向量寄存器的lower half(byte index from 0-7)。 - **LVXD2X** "Load Vector Doubleword 2 Indexed". This instruction is used to load two consecutive doublewords (64-bit elements) from memory into a vector register. 加载两个连续的64位数到目标向量寄存器。 -### 存储数据到内存 +## 存储向量寄存器中的数据到内存 - **STXVD2X** "Store Vector Doubleword 2 Indexed". This instruction is used to store two consecutive doublewords (64-bit elements) from a vector register into memory. ## 其它