- 1、本文档共45页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
Chapter8BitManipulationContents:LogicalOperationsShiftandRotateInstructions
8.1LogicalOperationsANDdestination,sourceTESTdestination,sourceThesameasANDinstructionbutnotchangedestinationNOTdestinationORdestination,sourceinclusiveXORdestination,sourceexclusive
TruetableABT000010100111ANDsrcregmemimmreg√√√mem√√destABT000011101110ABT000011101111AT0110
flagsLogicaloperationexceptforNOTwillaffectflagregister.CF=0OF=0AF:undefinedPF,SF,ZF:setbythevalueofresult.
Clearselectedbits(marking)ClearallbutthelastfourbitsinEAXANDeax,0000000fh
SetselectedbitsSetallbutthelastfourbitsinEAXOReax,fffffff0h
negateselectedbitsnegateallbutthelastfourbitsinEAXXOReax,fffffff0hXoreax,eax
;AND指令可用于复位某些位(同0相与),不影响其他位:将BL中D3和D0位清0,其他位不变andbl;OR指令可用于置位某些位(同1相或),不影响其他位:将BL中D3和D0位置1,其他位不变orbl,;XOR指令可用于求反某些位(同1相异或),不影响其他位:将BL中D3和D0位求反,其他不变xorbl,
Performcertainarithmeticoperationmovedx,0movebx,32divebxmovedx,eaxandedx,0000001fh
ManipulateASCIIcodesConvertASCIIcodetointegerSubeax,Andeax,0000000fhConvertintegertoASCIIOrbl,30hChangethecaseofASCIIcodeXorcl,
ApplicationofTESTExamineaparticularbitis“1”or“0”Testdx,2023hGetinformationaboutavalueTestcx,cxThefollowinginstructionusuallyis“jcc”
testal,01h ;测试AL旳最低位D0jnzthere ;标志ZF=0,即D0=1 ;则程序转移到there... ;不然ZF=1,即D0=0,顺序执行there:...TEST指令一般用于检测某些条件是否满足,但又不希望变化原操作数旳情况TEST
ShiftandRotateShiftandrotateinstructionsmanipulatebinarynumbersatthebinarybitlevel,asdidtheAND,OR,Exclusive-OR,andNOTinstructions.Shiftsandrotatesfindtheirmostcommonapplicationsinlow-levelsoftwareusedtocontrolI/Odevices.Themicroprocessorcontainsacompletesetofshiftandrotateinstructionsthatareusedtoshiftorrotateanymemorydataorregister.
ShiftinstructionsShiftinstructionspositionormovenumberstotheleftorright
文档评论(0)