| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 972 人关注过本帖
标题:masm报错A2004而且问题很严重。
取消只看楼主 加入收藏
btx_0607
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-12
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:7 
masm报错A2004而且问题很严重。
assume cs:code,ds:data,ss:stack

data segment
db '1.display       '
db '2.brows         '
db '3.replace       '
db '4.modify        '
data ends

stack segment
dw 0,0,0,0,0,0,0,0
stack ends


code segment

start:  mov ax,data
    mov ds,ax
    mov ax,stack
    mov ss,ax
    mov sp,16
    mov bx,0
    mov si,0
    mov cx,4
s:     push cx
    mov cx,4
s1:     mov al,2[bx+si]
    and al,11011111b
    inc si
    loop s1
    add bx,16
    pop cx
    loop s
code ends
end start
在mov ax,stack 和mov ax,data 这两行报错,不知道怎么解决。
搜索更多相关主题的帖子: start 
2012-03-12 09:14
btx_0607
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-12
收藏
得分:0 
自己做沙发。
2012-03-12 09:39
btx_0607
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-12
收藏
得分:0 
难道是我masm配置的问题?
2012-03-12 09:47
btx_0607
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-12
收藏
得分:0 
我刚刚问的,呵呵,又发现一个错error A4910: cannot open file: E:\masm32\bin\ml.err
刚安装的masm32为什么会找不到ml.err文件呢?
2012-03-12 10:11
btx_0607
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-12
收藏
得分:0 
原版复制的。。。第一次用的是Radasm,换成Masm32参数没变,不知道咋变啊,没接触过masm32这个东西啊,求指教。
2012-03-12 10:18
btx_0607
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-12
收藏
得分:0 
加上seg 还是那个错误。
2012-03-12 10:19
btx_0607
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-12
收藏
得分:0 
知道错了,官方回答
you are trying to assemble and link a 16-bit program with a 32-bit assembler/linker
actually - the assembler should be ok - it is the linker that cannot handle 16-bit code
at the end of the sub-forum list is one for 16-bit programming
search that subforum
there are 16-bit linker downloads, as well as batch files to perform assembly and linking
there are also a number of 16-bit program examples
you do not have to declare all those segments - there are shortcuts   

then, the data segment is best refered to as @DATA
2012-03-12 10:40
btx_0607
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-12
收藏
得分:0 
呵呵,谢谢,知道了
2012-03-12 10:41
快速回复:masm报错A2004而且问题很严重。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.031224 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved