- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
4.1 ARITHMETIC OPERATIONS ARITHMETIC OPERATIONS ON INTEGERS Addition in Two’s Complement Adding numbers in two’ s complement is like adding the numbers in decimal; you add column by column, and if there is a carry, it is added to the next column. When you add 2 bits, the result is 0 or 1. Overflow Overflow is an error that occurs when you try to store a number that is not within the range defined by the allocation. When you add numbers in two’s complement using N bits, make sure that each number and the result are in the range defined for two’s complement representation. Subtraction in Two’s Complement One of the advantages of two’s complement representation is that there is no difference between addition and subtraction. To subtract, negate (two’s complement) the second number and add. In other words, the following two statements are the same: Number 1 – Number 2 ?? Number 1 + (-Number 2) 4.2 LOGICAL OPERATIONS A single bit can be either 0 or1.You can interpret 0 as the logical value false and 1 as the logical value true. A logical operation can accept 1 or 2 bits to create only 1 bit. If the operation is applied to only one input, it is a unary operation, if it is applied to 2 bits, it is a binary operation. TRUTH TABLES One way to show the result of a logical operation is with a truth table. A truth table lists all the possible input combinations with the corresponding output. UNARY OPERATOR NOT Operator The NOT operator has one input (a bit pattern). It inverts bits; that is, it changes 0 to1 and 1 to 0. BINARY OPERATORS AND Operator It takes two inputs (two bit patterns) and creates one output (bit pattern). For each pair of input bits, the result is 1 if and only if both bits are 1; otherwise, it is 0. Inherent Rule of the AND Operator One interesting point about the AND operator is that if a bit in one input is 0, you do not have to check the corresponding bit in the other input, you can qu
您可能关注的文档
- 延边大学发展心理学课件 小学生心理发展.ppt
- 延边大学发展心理学课件 幼儿心理发展.ppt
- 延边大学发展心理学课件 中年期心理发展.ppt
- 延边大学管理学原理课件 沟通.ppt
- 延边大学管理学原理课件 管理道德与企业社会责任.ppt
- 延边大学管理学原理课件 管理活动与管理理论.ppt
- 延边大学管理学原理课件 激励.ppt
- 延边大学管理学原理课件 计划与计划工作.ppt
- 延边大学管理学原理课件 节领导的内涵.ppt
- 延边大学管理学原理课件 决策与决策方法.ppt
- 云南农业大学计算机导论课件Chapter5 Computer Organization.ppt
- 云南农业大学计算机导论课件Chapter6 Computer Networks.ppt
- 云南农业大学计算机导论课件Chapter7 Operating Systems.ppt
- 云南农业大学计算机导论课件Chapter8 Algorithms.ppt
- 云南农业大学计算机导论课件Chapter9 Programming Languages.ppt
- 云南农业大学计算机导论课件Chapter10 Software Engineering.ppt
- 云南农业大学计算机导论课件Chapter11 Data Structures.ppt
- 云南农业大学计算机导论课件Chapter12 Abstract Data Type.ppt
- 云南农业大学计算机导论课件Chapter13 File Structures.ppt
- 云南农业大学计算机导论课件Chapter14 Databases.ppt
文档评论(0)