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

📄 ex8_5b.asm

📁 汇编编程艺术
💻 ASM
字号:
; Ex8_5b.asm
;
; PrintVowels Module

		.xlist
		include 	stdlib.a
		includelib	stdlib.lib
		.list

; The following include directive brings in the
; EXTERNDEF directive for the PrintVowels routine
; so that this name will be global:

		include		Ex8_5.a


cseg		segment	para public 'code'



; PrintVowels-	On entry ES:DI points at a string
;		of characters.  This routine steps
;		through the string and prints each
;		character which is a vowel.
;
;		Note that the type of this procedure
;		(near or far) must exactly match
;		the type given in the EXTERNDEF
;		directive in the Lab8_10.a include
;		file.

PrintVowels	proc	near
		push	es	;Must preserve these
		push	di	; registers!
		push	ax

PVLoop:		mov	al, es:[di]	;Get next char
		cmp	al, 0		;End of str?
		jne	ProcessChar
		pop	ax
		pop	di
		pop	es
		ret


; The following four statements demonstrate how to use
; the FORC macro to generate a sequence of CMP instrs
; which varies depending on the number of characters
; in the second parameter.

ProcessChar:
		forc	char, <AaEeIiOoUuWwYy>
		cmp	al, '&char'
		je	IsAVowel
		endm

; If we get down here, the current character in AL is
; *not* a vowel

		inc	di	;Move on to next char
		jmp	PVLoop

; If we get down here, the character in AL is a
; vowel so print it to the display.

		.nolistmacro
IsAVowel:	putc
		inc	di	;Move on to next char
		jmp	PVLoop
PrintVowels	endp
cseg		ends


; Note that there is generally only one set of SSEG and
; ZZZZZZSEG segments in an entire project.  They should
; not appear in modules which do not contain your main
; program.

		end

⌨️ 快捷键说明

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