Meta
Blogroll
IP info
Programs
Daily Archives: 2007-09-13
Getting the SIDT base address with Delphi
function GetSIDTBaseAddress: DWORD; assembler; asm sub esp, 8 // create stack frame sidt qword ptr [esp] mov eax, dword ptr [esp+2] // write into EAX for return value add esp, 8 // clean up stack end; … or if the … Continue reading
Posted in /dev/null, EN, Programming, Software
Leave a comment