翻译的比较烂 个人文笔和英语都不太好 欢迎大家指点;)
Lesson 1
第一课
The first little example gets us started. It is a simple function in Pascal with multiplies an integer with the constant 2.
第一课从一个小例子开始,一个用PASCAL写的乘2函数
function MulInt2(I : Integer) : Integer;
begin
Result := I * 2;
end;
Lets steal the BASM from the CPU view. I compiled with optimizations turned on.
让我们在CPU 观察窗口中查看BASM代码 我的编译最优化已经开启
function MulInt2_BASM(I : Integer) : Integer;
begin
Result := I * 2;
文章整理:西部数码--专业提供域名注册、虚拟主机服务
http://www.west263.com
以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!




