奇数位和偶数位_使用8085微处理器检查偶数或奇数(8位)

news/2025/1/12 17:51:29/

奇数位和偶数位

Problem statement:

问题陈述:

To find whether an 8 bits number is even or odd using 8085 Microprocessors.

使用8085微处理器查找8位数字是偶数还是奇数。

Given number is EVEN number if its lower bit is 0 i.e. low otherwise number is ODD.

如果给定数字的低位为0,则为偶数,否则为低。

To check whether the number is odd or even, we basically perform AND operation with 01 by using ANI instruction. If number is even then we will get 00 otherwise 01 in accumulator.

要检查数字是奇数还是偶数,我们基本上使用ANI指令对01执行AND操作。 如果数字为偶数,则累加器中将得到00,否则为01。

We use 11 to represent odd number and 22 to represent even number.

我们用11代表奇数,用22代表偶数。

Algorithm:

算法:

  1. Load the accumulator with the first data.

    向累加器加载第一个数据。

  2. Perform AND operation with 01 on first data using ANI Instruction.

    使用ANI指令对第一个数据执行01的AND操作。

  3. Check if zero flag is set then set the value of accumulator to 22 otherwise 11 to accumulator.

    检查是否设置了零标志,然后将累加器的值设置为22,否则将11设置为累加器。

  4. Now load the result value in memory location.

    现在将结果值加载到内存位置。

Program:

程序:

    LDA     2050   
ANI     01
JZ **
MVI     A 11
JMP ***
** MVI A 22
***STA 3050
HLT

Observation:

观察:

    INPUT: 
2050:05
3050:11
OUTPUT: 
3052:02
3053:00

Hence we successfully find whether 8 bits number is even or odd.

因此,我们成功地找到8位数字是偶数还是奇数

翻译自: https://www.includehelp.com/embedded-system/check-for-even-or-odd-8-bits-number-using-8085-microprocessor.aspx

奇数位和偶数位


http://www.ppmy.cn/news/416175.html

相关文章

标志寄存器_8085微处理器的标志寄存器

标志寄存器 The Flag register is basically a special type of register or we can also say that they are Special Purpose Register. And based upon the value of result after any type of arithmetic and logical operation the value of flag bits become either set (…

东部公交采购管理系统为企业降本增效

深圳市东部公共交通有限公司(以下简称“东部公交”)是经深圳市人民政府授权,于2007年9月正式挂牌成立的公交特许经营企业,系深圳市国资委直管企业。 东部公交牢牢抓住粤港澳大湾区建设、深圳建设中国特色社会主义先行示范区和区域…

更优雅的Wordpress主题模板_WP中文主题_zibll主题_子比主题钻石代理会员

子比主题钻石代理购买链接 通过代理购买可以比官网优惠10块钱 https://www.zibll.com?ref618 现在是有活动,价格也便宜,想入手的抓紧时间。必须通过上面的代理链接,才会优惠。 zibll主题,子比主题,Wordpress主题,wordpress主题下载,wordpr…

400计算机毕业设计

PHPsqlB2B网络交易平台(全套计算机毕业设计).rar http://dl.vmall.com/c0alglgagy ASP网上服装商城_服装销售系统(SQL和ACCESS,任选)(任务书,开题报告,毕业论文,程序,源码).rar http://dl.vmall.com/c0ombcawhi Linux下的简单网络管理控制系统的设计与开发(开题报告…

mp运营【快速版】

文章目录 引言I mp命名1.1 教育II 简介2.1 育儿2.2 通识教育III mp运营3.1 赞赏账户3.2 自动回复3.3 绑定的微信号3.4 注册数量提升申请IV mp url4.1 常用链接格式(__biz参数)4.2 来源(scene参数 )引言 I mp命名 没有认证的企业订阅号只能修改一次名字。 设置名字之后立马…

十亿级视频播放技术优化揭密

导语:QCon是由InfoQ主办的全球顶级技术盛会,每年在伦敦、北京、东京、纽约、圣保罗、上海、旧金山召开。自 2007年 3月份首次举办以来,已经有超万名高级技术人员参加过QCon大会。QCon内容源于实践并面向社区,演讲嘉宾依据热点话题…

如何实现智能家居的网状网络?

文章路径:https://mp.weixin.qq.com/s?__bizMzU4NjMxNjA2NQ&mid2247484539&idx1&sn17a0ade996db2a5e52f13f418d7e841a&chksmfdfc6435ca8bed236188084c8b74657ed281dc684fe9291b64124b14196b32224151c38c4252#rd 网状网络是一种理想的住宅设计方案&…

Flutter插件汇总

❀ ❀ 尽可能收集好用的插件以便更快的开发效率,85%亲测,持续添加中 如果有好的插件或者建议,可以直接评论 ❀❀ Github地址:https://github.com/jahnli/awesome-flutter-plugins 文章源地址: https://juejin.im/pos…