Subversion Repositories spacemission

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
mov eax,offset @@StartCode    // Move(@@StartCode, Code^, @@EndCode-@@StartCode)
2
mov edx,dword ptr [Code]
3
mov edx,dword ptr [edx]
4
mov ecx,offset @@EndCode
5
sub ecx,offset @@StartCode
6
call Move
7
mov ecx,dword ptr [Code]      // ecx := Code;
8
mov ecx,dword ptr [ecx]
9
mov eax,offset @@EndCode      // Inc(PByte(Code), (@@EndCode-@@StartCode));
10
sub eax,offset @@StartCode
11
mov edx,dword ptr [Code]
12
add dword ptr [edx],eax