无我的侠圣 发表于 2017-10-15 21:56:12

试验七,错在哪里,报错文件中有无效字符,编译不通过

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'
        dd 16,22,382,1356,2390,8000,16000,24486,50065,97479,140417,197514
        dd 345980,590827,803530,11830000,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 ax,
                mov es:,ax
                mov ax,2h
                mov es:2h,ax
               
                mov ax,54h
                mov es:5h,ax
                mov ax,56h
                mov es:7h,ax
               
                mov ax,0A8h
                mov es:0Ah,ax
               
                mov ax,54h
                mov dx,56h
                div word ptr ds:0A8h
                mov es:0Dh,ax
               
                add bx,4
                add si,2
                add di,16
                loop s
               
                mov ax,4c00h
                int 21h
               
codesg ends
end start
编译时报错:   error A2044:invalid character in file

weizhongyang 发表于 2017-10-16 10:44:48

assume cs:codesg,ds:data,es:table

把红色的部分删除掉

另我用的masm 5.0编译就不会报错,你可以试下
页: [1]
查看完整版本: 试验七,错在哪里,报错文件中有无效字符,编译不通过