马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
不知道怎么回事
- assume cs:codesg,ds:data
- data 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'
-
- dd 16,22,382,1356,2390,8000,16000,24486,50065,97479,140417,197514
- dd 345980,590827,803530,1183000,1843000,2759000,3753000,4649000,5937000
-
- dw 3,7,9,13,28,38,130,220,476,778,1001,1442,2258,2793,4037,5635,8226
- dw 11542,14430,15257,17800
- data ends
- table segment
- db 21 dup ('year summ ne ?? ')
- table ends
- codesg segment
- start:
- mov ax,data
- mov ds,ax
- mov ax,table
- mov es,ax
-
- mov bx,0
- mov si,0
- mov di,0
- mov cx,21
- s:
- mov al,[bx]
- mov es:[di],al
- mov al,[bx+1]
- mov es:[di+1],al
- mov al,[bx+2]
- mov es:[di+2],al
- mov al,[bx+3]
- mov es:[di+3],al
-
- mov ax,54h[bx]
- mov dx,56h[bx]
- mov es:[di+5h],ax
- mov es:[di+7h],dx
-
- mov ax,[si+0a8h]
- mov es:[di+0ah],ax
-
- mov ax,[bx+54h]
- mov dx,[bx+56h]
- div word ptr ds:[si+0a8h]
- mov es:[di+0dh],ax
-
- add si,2
- add bx,4
- add di,16
- loop s
-
- mov ax,4c00h
- int 21h
- codesg ends
- end start
复制代码
我也不知道你有出什么问题,看了十分钟没发现问题,这是我写的,没你的简洁,你看看吧
- assume cs:codesg,ds:data,es:table
- data 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,24486,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,45257,17800
- ;以上是表示21年公司雇员人数的21个word型数据
- data ends
- table segment
- db 21 dup('year summ ne ?? ')
- db 0,0
- table ends
- codesg segment
- start:
- mov ax,data
- mov ds,ax
- mov bx,0
- mov ax,table
- mov ss,ax
- mov sp,212h
- mov si,0
- mov di,0
-
- mov cx,15h
- s:
- push cx
-
- push si
- mov cx,4
- ;nianfen
- s1:
- mov al,ds:[si]
- mov ss:[di],al
- inc di
- inc si
- loop s1
- pop si
-
- ;space
- mov al,0
- mov ss:[bx+di],al
- inc di
-
- ;shouru
- s2:
- mov ax,ds:[si+84]
- mov dx,ds:[si+86]
- mov ss:[di],ax
- mov ss:[di+2],dx
- add di,4
-
- ;space
- mov al,0
- mov ss:[di],al
- inc di
-
- ;guyuanshu
- s3:
- mov ax,ds:[bx+168]
- mov ss:[di],ax
- add di,2
- add bx,2
-
- ;space
- mov al,0
- mov ss:[di],al
- inc di
-
- ;renjunshouru
- s4:
- mov ax,ss:[di-8]
- mov dx,ss:[di-6]
- div word ptr ss:[di-3]
- mov ss:[di],ax
- add di,2
-
- ;space
- mov al,0
- mov ss:[di],al
- inc di
-
- add si,4
- pop cx
- loop s
-
- mov ax,4c00h
- int 21h
-
- codesg ends
- end start
复制代码
|