通用apdu指令_8086微处理器中的通用指令格式

通用apdu指令

Introduction:

介绍:

In this article, we are going to discuss about the 6 general formats of instructions.

在本文中,我们将讨论6种通用指令格式。

  1. One byte instruction:

    一字节指令

    This is only one byte long and may have implied data and register.

    这只有一个字节长,可能包含隐含的数据和寄存器。

  2. Register to register:

    注册注册

    This instruction is 2 byte long. First byte specified opcode and width(w) of opcode and second byte specified register operand and R/M field.

    该指令为2个字节长。 第一个字节指定操作码和操作码的宽度(w),第二个字节指定寄存器操作数和R / M字段。

    General Instruction Formats in 8086 Microprocessor (1)

    Here,

    这里,

    MSB - Most significant bit and LSB - Least significant bit

    MSB-最高有效位, LSB-最低有效位

  3. Register to/from memory with no displacement:

    向内存中注册/从内存中迁移

    This format is also 2-byte form and similar to the register except the MOD field.

    该格式也是2字节格式,除了MOD字段外,与寄存器相似。

  4. Register to/from memory with displacement:

    通过位移向/从内存注册

    This is same as the third one having one or two additional byte for displacement.

    这与第三位相同,具有一个或两个附加字节用于移位。

    General Instruction Formats in 8086 Microprocessor (2)
  5. Immediate operand to register:

    立即操作数进行注册

    In it first byte as well as three bits from the second byte which are used for the register field. In case of register to register format is reserved for the opcode. It also contains 1 or 2 bytes of immediate data.

    在它的第一个字节以及第二个字节之后的三个位用于寄存器字段。 如果是寄存器对寄存器格式,则保留操作码。 它还包含1或2个字节的立即数据。

    General Instruction Formats in 8086 Microprocessor (3)
  6. Immediate Operand to memory with 16-bit displacement:

    立即操作数以16位位移到内存

    General Instruction Formats in 8086 Microprocessor (4)

Opcode have single bit indicators their significance is as follows,

操作码具有单个位指示符,其含义如下:

  • W bit: It tells us whether the instruction is to operate over an 8-bit or 16-bit

    W位 :它告诉我们指令是在8位还是16位上运行

        W=0 /8bit
    W=1 /16bit
    
    
  • D bit: It tells whether the register specified field is the source register or destination register.

    D位 :告诉寄存器指定字段是源寄存器还是目标寄存器。

        D=0    Source register
    D=1    Destination
    
    
  • S bit: This is called sign extension bit; it is used along with the w bit.

    S位 :这称为符号扩展位; 它与w位一起使用。

        S   W
    0   0       8 bit operant with 8bit immediate
    0   1       operant. 16 bit operant with 6 bit
    0   1       immediate operant. 16 bit operation
    1   1       with sign extended immediate data.
    
    
  • V bit: Used in case of shift and rotate instruction if v=0, then shift count is 1. If v=1 then count is stored into the CL register and count should be count=2.

    V位 :如果v = 0,则在移位和旋转指令的情况下使用,则移位计数为1。如果v = 1,则将计数存储到CL寄存器中,并且计数应为count = 2。

  • Z bit: This is used along with the string primitives such as REP for comparison with ZF flag.

    Z位 :与Z标记的字符串原语(例如REP)一起使用。

Conclusion:

结论:

In the above article, I have discussed the different instruction formats of the microprocessors briefly, with relative diagrams also. As I said earlier at the beginning of this article also that this topic of computer system organization is very important from the examination point of view and also the base of your knowledge about computer architecture. For further queries shoot your questions in the comment section below!

在以上文章中,我简要讨论了微处理器不同指令格式 ,并附带了相关图表。 就像我在本文开头所说的那样,从检查的角度以及计算机基础知识的基础来说,计算机系统组织这一主题非常重要。 如有其他疑问,请在下面的评论部分中提出您的问题!

翻译自: https://www.includehelp.com/embedded-system/general-instruction-formats-in-8086-microprocessor.aspx

通用apdu指令

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/542409.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Win10系统怎样让打开图片方式为照片查看器

打开注册表编辑器之后,我们双击左侧的目录,依次打开HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft目录,如下图所示。 在Microsoft目录下,我们需要找到Windows Photo Viewer\Capabilities\FileAssociations目录项,直到看到该子…

c语言插入排序算法_插入排序算法,流程图和C,C ++代码

c语言插入排序算法In the last article, we discussed about the bubble sort with algorithm, flowchart and code. In this article, we are going to discuss about another basic sorting technique i.e. insertion sort. 在上一篇文章中,我们讨论了用算法&…

EF使用CodeFirst方式生成数据库技巧经验

前言 EF已经发布很久了,也有越来越多的人在使用EF。如果你已经能够非常熟练的使用EF的功能,那么就不需要看了。本文意在将自己使用EF的方式记录下来备忘,也是为了给刚刚入门的同学一些指导。看完此文,你应该就学会以CodeFirst的方…

对象过滤某个属性 循环 php_37道PHP面试题(附答案)

1、什么事面向对象?主要特征是什么?面向对象是程序的一种设计方式,它利于提高程序的重用性,使程序结构更加清晰。主要特征:封装、继承、多态。2、SESSION 与 COOKIE的区别是什么,请从协议,产生的…

oracle   SQL执行过程

1.sql执行过程1>解析(判断对象是否存在,是否有权限查询,语义解析,检查缓存中是否有相同的SQL等等)2>优化(CBO确定优化模式,确定访问路径,联接顺序,过程中通过很多综…

vue-video-player修改src就会报错_4、修改入口点代码

在riscv上电时,会进行CPU自检,然后跳转到bootloader处执行。bootloader设置好kernel的运行环境后,从硬盘加载kernel到内存,最后再跳转到kernel入口地址。我们采用的bootloader为OpenSBI,被加载到0x80000000地址&#x…

社交应用动态九宫格图片的规则

这里主要以微信和QQ空间为作为研究对象,得到的结论如下。 QQ空间里的动态 iOS设备,以iPhone6为分界 iPhone6及以上分辨率的设备: 当宽且高同时 > 512px时,判断 宽/高的比例值:大于 2时,以高度为基准&…

splunk中 如何隐藏input_翻糖制作中,如何避免裂缝,如何隐藏裂缝,如何防粘?...

翻糖蛋糕 因精致的样子和栩栩如生的各种造型深得人们的喜爱,它不仅满足了人们对蛋糕口味及装饰日益多样化的需求,同时也在动手制作的过程中,享受到美食与生活的无穷乐趣。不过裂缝,不平整,干燥对翻糖作品来说无疑是噩梦…

wpf中groupbox有什么用_展示设计中的标摊是什么 用的什么材料

经常听从事展示设计的工作人员说起标摊,那什么是标摊呢?顾名思义,标摊就是通用标准的国际展会摊位的缩写。但是不少人看到干巴巴的词语还是不能理解。那么这篇文章从用途、材料等方面来详细介绍标摊究竟是什么。 标摊的主要材质是什么一般来说…

ActiveX: 如何用.inf和.ocx文件生成cab文件

ActiveX: 如何用.inf和.ocx文件生成cab文件 转载于:https://www.cnblogs.com/time-is-life/p/5977962.html

操作系统中的处理机调度调度_操作系统中的多处理器调度

操作系统中的处理机调度调度多处理器操作系统 (Multiprocessor Operating system) A multiprocessor system consists of several processors which share memory. In the multiprocessor, there is more than one processor in the system. The reason we use multiprocessor …

sed 替换_sed命令批量替换文件内容

“ 开发人员有时会大批量替换文件内容,sed命令是一个很好用的工具。”01—暴力替换方式近期有个临时任务,将系统中所有"帐"替换为"账",那"帐"和"账"有啥区别呢;1、账的部首是贝;帐的部首是巾。2、账是关于货币、…

android 模仿uc标签页,模仿UCweb菜单 - 白羽雕弓 - 博客园

UCWeb的菜单看起来不错,自己想模仿做一个,苦恼一直没有思路google了几天,终于找到一个帖子 http://www.eoeandroid.com/viewthread.php?tid28824按照上面提供的思路实现了1、保留menu按键作用2、用popupwindow作为菜单显示容器3、用GridVie…

android webview 监听js,Android webview与js的数据交互

项目要用到Webview和js交互,查了查以前的项目感觉还是有必要整理下的。简单描述下项目中用到的地方,比如说在web页需要用到登录的地方点击登录跳转到APP原生登录界面去登录,点击web页的拨打电话弹出原生dialog询问是否拨打,点击we…

android web通讯录,Android手机开发之通讯录

Android手机开发——通讯录实现增加、查询、修改、删除的功能,输入联系人信息,点击“添加”按钮,可以添加联系人信息到数据库;点击“查询”按钮,会发现添加的联系人信息显示在界面中;重新输入联系人电话&am…

有关UITableView--cell复用问题

近来用Tableview做了一个九宫格。过程中碰到了两个cell复用问题。 问题一: 在cell中为button添加addTarget点击事件时,出现后面的cell会重叠它前面cell的事件。代码如下: C代码 static NSString *CellWithIdentifier "DiscoverHomeTab…

JavaScript基础之Number对象和Math对象

2019独角兽企业重金招聘Python工程师标准>>> //Math对象//属性float Math.E; //返回自然对数的底数e,约2.718float Math.LN2; //返回2的自然对数,约0.693float Math.LN10; //返回10的自然对数,约2.302fl…

My linux

为什么80%的码农都做不了架构师?>>> 1.linux 命令方式修改机器名称 # hostname newHostName # vi /etc/sysconfig/network 修改或增加配置:hostnamenewHostName # vi /etc/hosts 修改对应的本地HOST映射 xx.xxx.xxx.xxx newHostName 2.Redha…

狂神说es笔记_人教版七上英语Unit5电子课本音频+课堂笔记+课后同步习题

1人教 七上英语Unit5单词七年级英语上册Unit 5单词默写1做;干(助动词)__________2做,干(助动词第三人称单数形式)__________3有__________4网球__________5球__________6乒乓球______7球棒;球拍__________8(英式)足球____________________9排…

先进技术android,React Native实战(JavaScript开发iOS和Android应用)/计算机科学先进技术译丛...

导语内容提要本书作者Nader Dabit是AWS Mobile开发人员、React Native Training创始人和React Native Radio播客主持人。本书旨在帮助iOS、Android和Web开发人员学习使用React Native框架,构建高质量的iOS和Android应用程序。书中介绍了React Native入门基础知识&am…