//准备一个在汇编中要调用的函数
function DelphiFun(x,y: Integer): Integer;
begin
Result := x + y;
end;
//汇编函数
function AsmFun: Integer;
asm
mov eax, 1 {eax 对应函数的第一个参数, 这里给第一个...
The Art of Picking Intel Registers
I wrote this article for an online magazine called Scene Zine. Scene Zine caters to the Demo Scene, which is an digital art community dedicated t...