在1.asm中assume cs:codecode segmentmov al,bxmov ax,4c00hint 21hcode ends
end
其中mov al,bx应该是错误的但是masm编译只给了warning用debug查看汇编代码
masm给了warning,使用了BL ,生成了1.obj如何禁止这种行为 即不让其生成obj 而应报错
似乎没什么办法,masm5.0也没找到什么编译选项。