⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 repeat.asm

📁 汇编编程艺术
💻 ASM
字号:
; REPEAT-		Constructs a string of length CX where each element 
;			is initialized to the character passed in AL.
;
; On entry:
;
; ES:DI-		Points at the string to be constructed.
; CX-			Contains the length of the string.
; AL-			Contains the character with which each element of 
;			the string is to be initialized.

REPEAT		proc	near
		push	di
		push	ax
		push	cx
		pushf			;Save direction flag value.
		cld
		mov	es:[di], cl	;Save string length.
		mov	ch, 0		;Just in case.
		inc	di		;Start string at next location.
	rep	stosb
		popf
		pop	cx
		pop	ax
		pop	di
		ret
REPEAT		endp

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -