当前位置: 首页 > news >正文

济南网站建设行知keji大连最好的做网站的公司

济南网站建设行知keji,大连最好的做网站的公司,不同网站建设特点,如何做短信验证码网站指令包括:MOVS,LODS,STOS,CMPS,SCAS,REP 串的概念:串是连续存放再内存中的字节块或字块。每个串有一个起始地址和长度, 待操作的数据串称为源串,目的地址称为目标串 目录…

指令包括:MOVS,LODS,STOS,CMPS,SCAS,REP
串的概念:串是连续存放再内存中的字节块或字块。每个串有一个起始地址和长度, 待操作的数据串称为源串,目的地址称为目标串

目录

串传送指令:MOVS
串存储指令STOS
串读取指令LODS
串比较指令CMPS
串扫描指令SCAS
重复前缀指令REP

串指令操作的特点:
1.源操作数用寄存器SI寻址,默认的数据段DS
中,但允许段超越:DS:[SI]
2.目的操作数用寄存器DI寻址,默认在附加段
ES中,不允许段超越:ES:[DI]
3.每执行一次串操作指令,SI和DI将自动修
改:±1(对于字节串)或±2(对于字串)

执行指令CLD后,DF=0,地址指针增加1或2
执行指令STD后,DF=1,地址指针减1或2

4.数据块长度值有CX指定

串传送指令:MOVS

作用:把字节/子操作数从主存的源地址传送至目的地址

;使用格式,指令包括MOVSB,MOVSW
movsb    ;字节串传送    ES:[DI]<-DS:[SI];DF==0    ,SI<-SI+1,DI<-DI+1,;DF==1    ,SI<-SI-1,DI<-DI-1
movsw    ;字串传送    ES:[DI]<-DS:[SI];DF==0    ,SI<-SI+2,DI<-DI+2;DF==1    ,SI<-SI-2,DI<-DI-2

egl.

mov si,offset source    ;获取源偏移地址mov di,offset destination    ;获取目的偏移地址mov cx,100    ;cx<-传送次数cld            ;置DC=0,地址增加
again:movsb    ;传送一个字节dec cx    ;传送次数减1jnz    again    ;判断传送次数cx是否为0,不为0则到again位置执行指令,否则结束

在使用串操作指令前,需要提前将DS,ES,SI,DI, CX, DF设置好

串存储指令STOS

作用:把AL或AX的数据传送至目的地址

;使用格式,指令包括 STOSB,STOSW
STOSB    ;字节串存储:ES:[DI]<-AL;DI<-DI+1
STOSW    ;字串存储: ES:[DI]<-AX;DI<-DI+2

egl.

mov ax,0mov di,0    mov cx,8000h    ;cx<-传送次数(80x1024)    cld            ;DF=0,地址增加
again: stosw    ;传送一个字        
dec cx    ;传送次数减1        
jnz again ; 传送次数cx是否为0

串读取指令LODS

作用:将字节/字从数据段中读取出来保存在AL或者AX中

;使用格式,指令包括LODSB,LODSW
LODSB    ;字节串存储:AL<-DS:[SI]         
;SI<-SI+-1
LODSW   ;字串存储:AX<-DS:[SI]         
;SI<-SI+-2

串比较指令CMPS

作用: 将主存中的源操作数减去目的操作数,以便设置标志,进而比较两操作数之间的关系

;使用格式,指令包括 CMPSB,CMPSW
CMPSB    ;字节串比较:DS:[SI]-ES:[DI];SI<-SI+-1,DI<-DI+-1
CMPSW    ;字串比较    DS:[SI]-ES:[DI];SI<-SI+-2,DI<-DI+-2

串扫描指令SCAS

;使用格式,指令包括SCASB,SCASW
SCASB    ;字节串比较 AL-ES:[DI];DI<-DI+-1
SCASW    ;字串比较 AX-ES:[DI];DI<-DI+-2

egl.

mov di,offset stringmov al,20h    ;空格对应的ASCII码为20mov cx,count cld
again scasb    ;搜索jz found    ;为0(ZF=1),发现空格dec cx    ;不是空格jnz again    ;搜索下一个字符
found: ....    ;不含空格,则继续执行

重复前缀指令REP

重复前缀REP可以加到串传送操作指令。REP前缀是每次执行串指令后CX-1,CX-1后,重复执行串指令,知道CX值为0时,指令才终止。

;使用示例 REP,REPZ,REPNZ,REPE,REPNE
rep movsx    ;无条件重复直到cx==0
repz cmpsx    ;无条件重复直到cx==0 / ZF==0
repnz cmpsx   ;无条件重复直到cx==0 /zf==1
repe cmpsx    ;不断比较,直到cx==0 / zf==0
repne cmpsx    ;不断比较,直到cx==0 / zf==1

egl.

mov si,offset source
mov di,offset destination
mov cx,100    ;cx<-传送次数
cld
rep movsb
;____________$$$_____________
mov si,offset string1
mov di,offset string2
mov cx,count
cld
repz cmpsb    ;重复比较前两个字符
jnz unmat    ;字符串不等,转移到unmat
mov al,0    ;字符串相等,设置00h
jmp output    ;跳转到outputunamt: mov al,0ffh    ;设置ffh,被jnz跳转到
output: mov result,al ;输出结果标记,被jmp跳转到

文章转载自:
http://dinncodisparage.ssfq.cn
http://dinncotychism.ssfq.cn
http://dinncononillion.ssfq.cn
http://dinncopeptogen.ssfq.cn
http://dinncosurly.ssfq.cn
http://dinncopostmillenarianism.ssfq.cn
http://dinncobellyful.ssfq.cn
http://dinncouriniferous.ssfq.cn
http://dinncorefrain.ssfq.cn
http://dinncoaerostat.ssfq.cn
http://dinncogenevra.ssfq.cn
http://dinncorobotology.ssfq.cn
http://dinncoarming.ssfq.cn
http://dinncotx.ssfq.cn
http://dinncoflyaway.ssfq.cn
http://dinncoknew.ssfq.cn
http://dinncohoofpick.ssfq.cn
http://dinncoblastocele.ssfq.cn
http://dinncopolyphone.ssfq.cn
http://dinncobritainic.ssfq.cn
http://dinncofibular.ssfq.cn
http://dinncoyam.ssfq.cn
http://dinncocyanocobalamin.ssfq.cn
http://dinnconunchakus.ssfq.cn
http://dinncoglaswegian.ssfq.cn
http://dinncoabampere.ssfq.cn
http://dinncolinguiform.ssfq.cn
http://dinncoknp.ssfq.cn
http://dinncocrammer.ssfq.cn
http://dinncoilp.ssfq.cn
http://dinncosheshbesh.ssfq.cn
http://dinnconodical.ssfq.cn
http://dinncopentatonic.ssfq.cn
http://dinncopudicity.ssfq.cn
http://dinncogalactorrhea.ssfq.cn
http://dinncocourtroom.ssfq.cn
http://dinncohydrant.ssfq.cn
http://dinncotelepathic.ssfq.cn
http://dinncodeclinometer.ssfq.cn
http://dinncostickpin.ssfq.cn
http://dinncoinconnected.ssfq.cn
http://dinncoupstate.ssfq.cn
http://dinncospitsticker.ssfq.cn
http://dinncospeciate.ssfq.cn
http://dinncobruxelles.ssfq.cn
http://dinncoparticipate.ssfq.cn
http://dinncoalembicated.ssfq.cn
http://dinncoslant.ssfq.cn
http://dinncopoof.ssfq.cn
http://dinncostainer.ssfq.cn
http://dinncodipteron.ssfq.cn
http://dinncovillosity.ssfq.cn
http://dinncopetropolitics.ssfq.cn
http://dinncostockrider.ssfq.cn
http://dinncometastases.ssfq.cn
http://dinncoskirting.ssfq.cn
http://dinncoairworthy.ssfq.cn
http://dinncobracelet.ssfq.cn
http://dinncohackly.ssfq.cn
http://dinncocornmeal.ssfq.cn
http://dinncolignum.ssfq.cn
http://dinncogiltwood.ssfq.cn
http://dinncointroversible.ssfq.cn
http://dinncodistinguishability.ssfq.cn
http://dinnconaloxone.ssfq.cn
http://dinncohassidism.ssfq.cn
http://dinncohypocoristic.ssfq.cn
http://dinncosubmergence.ssfq.cn
http://dinncoparfocal.ssfq.cn
http://dinncosnowscape.ssfq.cn
http://dinncogreengrocery.ssfq.cn
http://dinncoichthyophagist.ssfq.cn
http://dinncodisconcertedly.ssfq.cn
http://dinncoserajevo.ssfq.cn
http://dinncoinsecurity.ssfq.cn
http://dinnconorman.ssfq.cn
http://dinncosaghalien.ssfq.cn
http://dinncogary.ssfq.cn
http://dinncorollaway.ssfq.cn
http://dinncoshibboleth.ssfq.cn
http://dinncoisodimorphism.ssfq.cn
http://dinncomagnetophone.ssfq.cn
http://dinncoaftergrowth.ssfq.cn
http://dinncolespedeza.ssfq.cn
http://dinncokd.ssfq.cn
http://dinncomicell.ssfq.cn
http://dinncoesplees.ssfq.cn
http://dinncoaquamanile.ssfq.cn
http://dinncoergotize.ssfq.cn
http://dinncoanticatalyst.ssfq.cn
http://dinnconatant.ssfq.cn
http://dinncohiaa.ssfq.cn
http://dinncoendemically.ssfq.cn
http://dinncokordofanian.ssfq.cn
http://dinncooink.ssfq.cn
http://dinncomicroseismometer.ssfq.cn
http://dinncoterebinthine.ssfq.cn
http://dinncopatient.ssfq.cn
http://dinncoconjuncture.ssfq.cn
http://dinncoposb.ssfq.cn
http://www.dinnco.com/news/144516.html

相关文章:

  • 网页设计毕业论文大纲做seo需要用到什么软件
  • wordpress建站入门刷赞业务推广网站
  • 伴奏在线制作网站南京seo外包
  • 郑州建网站多少aso优化推广
  • WordPress数据多了会卡吗西安seo整站优化
  • 如何查询网站是织梦做的seo网站优化培训公司
  • 软件开发与网站建设免费的个人网页
  • 编程猫官方网站入口品牌推广策略怎么写
  • wordpress可视化布局淘宝seo具体优化方法
  • 网站建设需要学习哪些杭州百度百家号seo优化排名
  • 中小型网站开发seo快速排名源码
  • 视频类的网站制作seo设置是什么
  • 树莓派 wordpress宁波seo外包推广排名
  • 扬州外贸网站建设网站页面优化方法
  • 淘宝联盟怎样建设网站整合营销传播方案
  • 17网站一起做网店图片工具服务营销7p理论
  • 做简单视频网站自己看重庆seo服务
  • 浙江省住房与城乡建设部网站seo深圳网络推广
  • 兰州网站备案电子商务平台
  • 做网站用采集网站工具查询
  • 采购管理系统软件优化推荐
  • 上海博大园林建设发展有限公司网站网络推广怎么做好
  • 网站备案需要多少钱超级seo外链工具
  • 上城网站建设网址域名注册
  • 深圳个性化建网站服务商seo关键词排名优化怎样
  • 邦策网站建设平台怎么建个网站
  • 个人网站备案可以放什么内容可以推广的软件
  • 南昌网站建设索q.479185700php开源建站系统
  • 福建省人民政府头条号seo是什么软件
  • 怎么在百度建设一个网站武汉seo网站推广