ring0.asm
来自「Undocumented Windows NT 经典书籍的源码」· 汇编 代码 · 共 23 行
ASM
23 行
.386
.model small
.code
public __GetPhysicalAddressAndPageAttributes
extrn _CFuncGetPhysicalAddressAndPageAttributes@12:near
__GetPhysicalAddressAndPageAttributes proc
push ebp
mov ebp, esp
push [ebp+14h]
push [ebp+10h]
push [ebp+0Ch]
call _CFuncGetPhysicalAddressAndPageAttributes@12
pop ebp
retf 0Ch
__GetPhysicalAddressAndPageAttributes endp
END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?