彙編 - STOS 指令



STOS 指令將資料項從 AL(對於位元組 - STOSB)、AX(對於字 - STOSW)或 EAX(對於雙字詞 - STOSD)複製到目標字串,該字串由記憶體中的 ES:DI 指向。

以下示例演示使用 LODS 和 STOS 指令將大寫字串轉換成相應的小寫值 −

section	.text
   global _start        ;must be declared for using gcc
	
_start:	                ;tell linker entry point
   mov    ecx, len
   mov    esi, s1
   mov    edi, s2
	
loop_here:
   lodsb
   or      al, 20h
   stosb
   loop    loop_here	
   cld
   rep	movsb
	
   mov	edx,20	        ;message length
   mov	ecx,s2	        ;message to write
   mov	ebx,1	        ;file descriptor (stdout)
   mov	eax,4	        ;system call number (sys_write)
   int	0x80	        ;call kernel
	
   mov	eax,1	        ;system call number (sys_exit)
   int	0x80	        ;call kernel
	
section	.data
s1 db 'HELLO, WORLD', 0 ;source
len equ $-s1

section	.bss
s2 resb 20              ;destination

編譯並執行上述程式碼後,會產生以下結果 −

hello, world
assembly_strings.htm
廣告
© . All rights reserved.