马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 740641642 于 2018-8-22 21:23 编辑
assume cs:codesg
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 11452,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 bx,0
mov ax,table
mov ss,ax
mov bp,0
mov si,0
mov cx,21
S:mov ax,[bx+si+0]
mov [bp+0],ax
mov ax,[bx+si+2]
mov [bp+2],ax
mov ax,[bx+si+54h]
mov [bp+5h],ax
mov ax,[bx+si+56h]
mov [bp+7h],ax
mov ax,[bx+si+0a8h]
mov [bp+0ah],ax
mov ax,[bx+si+0aah]
mov [bp+0ch],ax
mov ax,[bx+si+54h]
mov ax,[bx+si+56h]
div word ptr [bx+0a8h]
mov [bp+0dh],ax
add bp,10h
mov si,2
add bx,2
loop S
mov ax,4c00h
int 21h
codesg ends
end start
前两行是对的后面就乱了
mov ax,[bx+si+0a8h]
mov [bp+0ah],ax
mov ax,[bx+si+0aah] ;你这里不对,这行代码是多余的,雇员人数是word型,你传了个dword,你看
mov [bp+0ch],ax 一下表格 0ch 是什么位置
mov si,2 ;这两行不对,逻辑有点问题
add bx,2
另外,我确实忘记了 bp 的默认段寄存器是 ss ,确实省了几行化码
|