Archive for '编程技术交流'
03.01 汇编-内存中字的访问
CPU中用16位寄存器来储存一个字,高8位存放高位字节,低8位存放低位字节。内存是一个单元存放一个字节, [...]
Posted: 一月 11th, 2014 under 汇编.
Tags: 学习, 日记, 汇编
Comments: 2
02.16 汇编-Debug A指令
用Debug的A命令,可以以汇编指令的形式在内存中写入机器指令。(如下图) 用A命令以汇编语言从 [...]
Posted: 一月 6th, 2014 under 汇编.
Tags: 学习, 日记, 汇编
Comments: none
02.15 汇编-Debug T指令
使用Debug的T命令可以执行一条或多条指令,使用T命令可以执行CS:IP指向的指令。如下图: 首先 [...]
Posted: 一月 2nd, 2014 under 汇编.
Tags: 学习, 日记, 汇编
Comments: 1
02.14 汇编-Debug U指令
E命令可以向内存中写入机器码,用U命令可以查看内存中机器码的含义。 如果我们从内存1000:0单元开始输入 [...]
Posted: 十二月 25th, 2013 under 汇编.
Tags: 学习, 日记, 汇编
Comments: none
02.13 汇编-Debug E指令
Debug的E指令可以改写内存中的内容,例如要将内存1000:0~1000:9单元中的内容分别写成0、1 [...]
Posted: 十二月 6th, 2013 under 汇编.
Tags: 学习, 日记, 汇编
Comments: 3
02.12 汇编-Debug D指令
如果想知道内存10000H处的内容,可以用“d 段地址:偏移地址”的格式来查看。首先将这个地址表示为“地址 [...]
Posted: 十二月 4th, 2013 under 汇编.
Tags: 学习, 日记, 汇编
Comments: none