wwwlyj123321 发表于 2015-5-6 08:56:24

新手汇编语言编译出现问题求助

这是源程序
assume cs:code

codesegment
        dw 0123h,0000h, 0123h,0000h, 0123h,0000h, 0123h,0000h

start:
        mov bx,0
        mov ax,0
       
        mov cx,8
s:add ax,cs:
        add bx,2
        loop s
       
       
        mov ax 4c00h
        int 21h
       
code ends

end start       

这是错误提示
Assembling: 1.asm
1.asm(16) : error A2008: syntax error : in instruction

a649583061 发表于 2015-5-6 11:06:20

mov ax 4c00h
改为 mov ax,4c00h
中间有个 “,”
页: [1]
查看完整版本: 新手汇编语言编译出现问题求助