DS DI ES SI等等】的更多相关文章

DS is called data segment register. It points to the segment of the data used by the running program. You can point this to anywhere you want as long as it contains the desired data. ES is called extra segment register. It is usually used with DI and…
boot文件 bootsect.s 第一篇随笔 参考 [github这个博主的][ https://github.com/sunym1993/flash-linux0.11-talk ] bootsect.s 开机后会主动把由硬件设置好的主动把第一磁盘扇区212字节的内容读取到内存中 1.boot文件 bootsect.s 第一段指令代码,只是把开机从磁盘读取的这段bootsect.s代码复制到了另一片区域,还设置了栈顶 mov ax,#BOOTSEG ;BOOTSEG = 0x07c0 mov…
这个很简单: sp:表示栈顶指针,指向栈顶地址.与SS相配合使用.ss为栈段. bp:是基址指针,段地址默认在SS中.可以定位物理地址,比如:"mov ax,[bp+si+6]/mov ax,[bp+di+6]. DI:是目的变址寄存器.一般情况下与ds联用,来确定某个储存单元的地址. SI:是源变址寄存器,默认段地址和DI一样,在DS中.和DS联用. 这四个寄存器,都是16位的,不可以分割为八位. 要注意,1,sp和bp段地址默认在SS中.2..sp指向栈顶元素地址.有自加和自减能力,而bp没…
一.汇编语言中,为什么SI和DI不能同时使用汇编 其实你可以想一下,这两个寄存器的意思,SI源变址寄存器,DI目地变址寄存器,既然是变址寄存器,那么他们肯定是在某个地址的基础上进行偏移变化,由此我们就得出了需要基址寄存器. 你要是把这两个寄存器同时使用,那你地址变化的基址都没有,你该怎么变化呢?你在谁的基础上变化(也就是地址偏移)? 对于这些汇编中的规定,其实有时并不需要书上详细的介绍,我们都应该可以从中推导出这些规则,书上的那些介绍个人认为只是用来验证我们的推测的.或是对我们所掌握的知识的进行…
1- SI和DI是8086CPU中和bx功能相近的寄存器, SI和DI不能够分成两个8位寄存器来使用, 下面的三组指令实现了相同的功能: (1)  mov bx,0 mov ax,[bx] (2) mov si,0 mov ax,[si] (3) mov di,0 mov ax,[di] 或者 (1)  mov bx,0 mov ax,[bx + 123] (2) mov si,0 mov ax,[si + 123] (3) mov di,0 mov ax,[di + 123] 方法一: ;用寄…
疯狂暑期学习  汇编入门学习笔记 (六)-- si.di,双重循环 參考: <汇编语言> 王爽 第7章 1. and和or指令,与[bx+idata] and和or.就不多说了. [bx+idata] 这样写是能够的,某些情况下,比較方便. [bx+idata] 也能够写成 idata[bx] 直接见样例: 把'ABcde' 跟 'fGHig' 都改成大写(ASCII中大写字母与小写字母二进制中.仅仅有第五位不同,大写字母是0,小写字母是1) assume cs:code,ds:data da…
si和di是8086CPU中和bx功能相近的寄存器,si和di不能够分成两个8位寄存器来使用. 用si和di实现将字符串"welcome to masm!"复制到它后面的数据区中. assume cs:codesg,ds:datasg datasg segment db 'welcome to masm!' db '..........................' datasg ends codesg segment start: mov ax, datasg mov ds,ax…
data segment a db ,,,,,,,, b dw ;sum of a table db 11h,22h,33h,44h,55h,66h,77h,88h,99h ends code segment start: mov ax,data mov ds,ax mov si,offset a mov cx,offset b - offset a ;array bytes length s: mov al,[si] add b,ax inc si loop s ;test xlat mov…
Appendix A 附录A PC hardware Pc的硬件 This appendix describes personal computer (PC) hardware, the platform on which xv6 runs. 这个附录描述了xv6运行的平台——个人计算机(PC)的硬件. A PC is a computer that adheres to several industry standards, with the goal that a given piece o…
缩写原意: Overflow of = OV NV [No Overflow] Direction df = DN (decrement) UP (increment) Interrupt if = EI (enabled) DI (disabled) Sign sf = NG (negative) PL (positive) Zero zf = ZR [zero] NZ [ Not zero] Auxiliary Carry af = AC NA [ No AC ] Parity pf = P…