| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1020 人关注过本帖
标题:[讨论]是不是rol语句下面不应该再有其他的标志语句??
只看楼主 加入收藏
Flyer
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2006-4-27
收藏
 问题点数:0 回复次数:3 
[讨论]是不是rol语句下面不应该再有其他的标志语句??
是不是rol语句下面不应该再有其他的标志语句??
我写了一个16进制转换成2进制并且输出的程序:(错误发生的地方已经标注!)
data segment
array db 4 dup(0)
temp db ?
count_1 db 4
count_2 db 8
str_0 db 'This program can change hex_num to bin_num:','$'
str_I db 'You can enter 4 bits:','$'
str_2 db 'You have entered 4 bits'
data ends

code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
mov si,0
mov cx,4
lea dx,str_0
mov ah,9
int 21h
mov dl,0ah
mov ah,2
int 21h
lea dx,str_I
mov ah,9
int 21h
Label_0:
mov ah,1
int 21h
;鉴定是不是超出10
cmp al,3ah
jc Label_0_1
sub al,37h
jmp Label_0_2
Label_0_1 :
sub al,30h;
Label_0_2 :
mov array[si],al

inc si
dec cx
jnz Label_0
;sign to the end of entering
mov dl,0ah
mov ah,2
int 21h



mov dl,0ah
mov ah,2
int 21h

int 21h
;输入四位十六位数完毕,接下来对四个数字依次进行转换
mov si,0
Label_1:
mov cx,4
mov al,array[si]
rol al,4;这个地方就是导致错误发生的地方,去掉此句的话就没有问题了!
mov temp,al
Label_2:;这个标志句被提示improper operand type
mov al,temp
rol al,1
mov temp,al
and al,01h
add al,30h
mov dl,al
mov ah,2
int 21h
dec cx
jnz Label_2
inc si
dec count_1
mov dl,1ch
mov ah,2
int 21h
jnz Label_1
mov ah,4ch
int 21h
code ends
end start

但是如果去掉那一句,结果是0000-0000-0000-0000了,不是预想中的结果了
error:improper operand type

搜索更多相关主题的帖子: 语句 rol 
2006-05-04 10:33
lj_860603
Rank: 3Rank: 3
等 级:新手上路
威 望:6
帖 子:714
专家分:0
注 册:2006-1-25
收藏
得分:0 

不是可以的吗?
另外你的STR_2的字符串后面忘记加'$'了.


我的原则很简单:不做不喜欢的事!
2006-05-04 10:37
汪洋
Rank: 1
等 级:新手上路
帖 子:26
专家分:0
注 册:2006-5-5
收藏
得分:0 
应该先把要移位的次数放在CL里面,再用ROL AL,CL
也就是把错误地方改成
MOV CL,4
ROL AL,CL

2006-05-06 13:22
workhard_lz
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-5-14
收藏
得分:0 
[求助]

data segment
array db 4 dup(0)
temp db ?
count_1 db 4
str_0 db 'This program can change hex_num to bin_num:','$'
str_I db 'You can enter 4 bits:','$'
str_2 db 'You have entered 4 bits'
data ends

code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
mov si,0
mov cx,4
lea dx,str_0
mov ah,9
int 21h
mov dl,0ah
mov ah,2
int 21h
lea dx,str_I
mov ah,9
int 21h
Label_0:
mov ah,1
int 21h

cmp al,3ah
jc Label_0_1
sub al,37h
jmp Label_0_2
Label_0_1 :
sub al,30h;
Label_0_2 :
mov array[si],al

inc si
dec cx
jnz Label_0

mov dl,0ah
mov ah,2
int 21h

mov si,0
Label_1:
mov cx,0404h
mov al,array[si]
rol al,cl

Label_2:
rol al,1
mov temp,al
and al,01h
add al,30h
mov dl,al
mov ah,2
int 21h
mov al,temp
dec ch
jnz Label_2
inc si
dec count_1
mov dl,1ch
mov ah,2
int 21h
jnz Label_1
mov ah,4ch
int 21h
code ends
end start

2006-05-14 11:09
快速回复:[讨论]是不是rol语句下面不应该再有其他的标志语句??
数据加载中...
 
   



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

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