Assembly language experiment 7 code implementation

Insert image description here
Insert image description here
Insert image description here
Insert image description here

assume cs:codesg

datasg segment
	db '1975','1976','1977','1978','1979','1980','1981','1982','1983'
	db '1984','1985','1986','1987','1988','1989','1990','1991','1992'
	db '1993','1994','1995'
	;以上是表示21年的21个字符串
	
	dd 16,22,382,1356,2390,8000,16000,24286,50065,97479,140417,197514
	dd 345980,590827,803530,1183000,1843000,2759000,3753000,4649000,5937000
	;以上是表示21年公司总收入的21个dword型数据
	
	dw 3,7,9,13,28,38,130,220,476,778,1001,1442,2258,2793,4037,5635,8226
	dw 11542,14430,15257,17800
	;以上是表示21年公司雇员人数的21个word型数据
datasg ends

tablesg segment
	db 21 dup ('year summ ne ?? ')
tablesg ends

codesg segment
	
	start:	mov ax,datasg
			mov ds,ax
			mov di,0
			mov si,0
			
			mov ax,tablesg
			mov es,ax
			mov bx,0
			
			mov cx,21
		s:	mov ax,ds:[di]
			mov es:[bx],ax
		
			mov ax,ds:[di+2]
			mov es:[bx+2],ax
			;4个字节年份
			
			mov byte ptr es:[bx+4],32
			;1个字节空格
			
			mov ax,ds:[di+84]
			mov es:[bx+5],ax
			
			mov ax,ds:[di+86]
			mov es:[bx+7],ax
			;4个字节收入
			
			mov byte ptr es:[bx+9],32
			;1个字节空格
			
			
			mov ax,ds:[si+168]
			mov es:[bx+10],ax
			;2个字节雇员数
			
			mov byte ptr es:[bx+12],32
			;1个字节空格
			
			
			mov ax,es:[bx+5]
			mov dx,es:[bx+7]
			;被除数
			
			div word ptr es:[bx+10]
			;除数
			
			
			mov es:[bx+13],ax
			;2字节人均收入
			
			mov byte ptr es:[bx+15],32
			;1个字节空格
	
			add di,4
			add si,2
			add bx,16
			loop s
	
			mov ax,4c00H
			int 21H
	
codesg ends
end	 start

Guess you like

Origin blog.csdn.net/lcy1619260/article/details/132872551