王爽 汇编语言 第十一章 实验十一

assume cs:codesg

datasg segment;
	db "Beginner's All-purpose Symbolic Instruction Code.",0
datasg ends

codesg segment 
begin:
	mov ax,datasg
	mov ds,ax
	mov si,0
	call letterc
	
	mov ax,4c00h
	int 21h
	
letterc:
	push si
	push ax
	push bx
	push cx
	
s:
	mov al,ds:[si]
	cmp al,0
	je ok
	cmp al,97
	jb next
	cmp al,122
	ja next
	sub al,20h
	mov ds:[si],al
next:
	inc si
	jmp s
	
	ok:
	pop cx
	pop bx
	pop ax
	pop si
	ret
codesg ends
end begin
	

王爽 汇编语言 第十一章 实验十一_第1张图片
其他实验题答案:实验题答案合集

你可能感兴趣的:(汇编语言,王爽,王爽,汇编,实验11)