본문 바로가기

코드/64bit5

Driver x64 Restrictions 마이크로 소프트에선 아래와 같은 사항에 대해 하지 말라고 되어있다. Driver x64 Restrictions On x64-based systems, kernel code and certain kernel data structures are protected from modification. Any driver that attempts to modify such code or data will cause the system to bug check (with the CRITICAL_STRUCTURE_CORRUPTION bug check). Drivers for x64-based systems must avoid operations that might trigger this bug check. In part.. 2010. 5. 20.
AMD64 http://www.codeproject.com/KB/system/AMD64_EM64T_architectur.aspx http://www.ii.uib.no/~osvik/x86-64/ 2010. 5. 7.
Powerful x86/x64 Mini Hook-Engine http://www.codeproject.com/KB/system/mini_hook_engine.aspx 2010. 3. 29.
X64 Calling Computers with 64 bit processors are becoming popular, at least in enterprise circles. Also the X64 version of Windows Vista is more popular than Windows XP 64 bit edition. 2 Types of 64 bit architecture Yes, unlike 32 bit (aka X32) there are 2 64 bit architectures: AMD's X64 ; also known as X32-64 & AMD64 Intel's IA-64; also known as ItaniumThe subject of this post is AMD's 64 bit chip, which i.. 2010. 3. 26.
X64 Assembly Code in Windows Drivers Writing asm code for 32 bit drivers is straightforward. You can embed the code in an __asm { } block. void DemoFunction() { __asm { mov eax, 0x01 ; more assembly } } But writing assembly in 64 bit driver source code requires a bit more work. The 64 bit compiler will not allow inline assembly. The assembly code will have to be moved to a seperate assembly module (an .asm file). Step 1 : Write nec.. 2010. 3. 26.