-
汇编语言 实验7 寻址方式在结构化数据访问中的应用
题目如下:assume cs:codesg, ds:data, es:table data segment db '1975', '1976', '1977', '1978', '1979', '1980', '1981', '1982', '1983' db '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1991', '1992' db '1993', '1994', '1995'; 以上是表示21年的21个字符串 dd...…
-
C语言 打印
整理自小甲鱼鱼C论坛打印C语言的打印命令,printf,将制定的内容打印到屏幕上。printf最后的f是formatted的缩写,格式,也因此通常把printf命令成为格式化输出函数。代码示例:#include <stdio.h>int main(){ printf(" ** * ******* ** ************ *** ***************** ********** @ *...…
-
python 魔法方法 (2) 算术运算
整理自小甲鱼鱼C论坛算数运算Python 2.2以后,对类和类型进行了统一,做法就是将int(), float(), str(), list(), tuple()这些BIF转换为工厂函数:>>> type(len)<class 'builtin_function_or_method'>>>> type(int)<class 'type'>这与一般的类相同:>>> class C: pass>&...…
-
Wave Propagation and Phase Shifts
The image magnification,as seen in the figure, when the scattered electrons poass through the lens which will get together at the imaginary back focal plane, which is just like the fourier transform process, and when pass into the detector, just l...…
-
The Amplitude Contrast and the Phase Contrast
In TEM, there are two kinds of contrast:Amplitude ContrastAs you can see in the figure,When the incident electrons ‘light’ on the sample, there will be three kinds of resulted electrons, which is also mentioned before in the ‘The interaction betwe...…
-
汇编语言 8.7 8.8 8.9 div 伪指令dd dup
8.7 div 指令div是除法指令,有以下注意事项: 除数:有8位和16位两种,在一个reg或者内存单元中。 被除数:默认放在ax或dx和ax中,如果除数为8位,被除数则为16位,默认在ax中存放;如果除数为16位,则被除数则为32位,在dx和ax中存放,dx存放高16位,ax存放在低16位。 结果:如果除数为8位,则al存储除法操作的商, ah存储除法操作的余数;如果除数为16位,则ax存储除法操作的商,dx存储除法操作的余数。除数和被除数的规格总结: 除数...…
-
Scanning EM VS Bright Field EM
First of all, let’s introduce the definition of the Scannning EM and the Bright field EM respectively: Scanning EMTake the incoming beam of electrons and focused on very small point, rather that small point back and forth across the image as if y...…
-
C语言 简介以及C转化asm的初尝试
整理自小甲鱼鱼C论坛编译的概念将助记符转化为机器码的过程叫做编译。C语言的优势(1) 效率高C语言相对于其他第三代编程语言,C语言是编译型语言,源代码最终编译为机器语言,也就是可执行文件,从此CPU就可以直接执行。编译型语言与解释型语言的对比: C语言 Python 汇编语言 字节码 机器语言 解释器 CPU执行 CPU执行 (2) ...…
-
汇编语言 8.6 寻址方式的综合应用
8.6 寻址方式的综合应用按照王爽教材里给的例子: 公司名称 DEC 总裁姓名 Ken Olsen 排名 137 收入 40 著名产品 PDP 以上是DEC公司1982年的情况,到了1988年DEC公司的信息放生了变化,如下: 公司名称 DEC 总裁...…
-
python 魔方方法 (1) 构造与析构
整理自小甲鱼鱼C论坛构造与析构__init__(self[,...])__init__()相当于其他面向对象编程语言的构造方法,也就是类在实例化成对象时,首先会调用的方法。class Rectangle: def __init__(self, x, y): self.x = x self.y = y def getArea(self): return self.x * self.y>>> rect = Rectangl...…