.dvalloc 申请虚拟内存
.dvfree 释放虚拟内存
.writemem 写内存到文件
.readmem 读文件到内存
!address 内存信息查看
!vprot 看虚拟内存保护属性
0:001> .dvalloc 1000
Allocated 1000 bytes starting at 01150000
0:001> !vprot 01150000
BaseAddress: 01150000
AllocationBase: 01150000
AllocationProtect: 00000040 PAGE_EXECUTE_READWRITE
RegionSize: 00001000
State: 00001000 MEM_COMMIT
Protect: 00000040 PAGE_EXECUTE_READWRITE
Type: 00020000 MEM_PRIVATE
0:001> !address 01150000 + 5
Failed to map Heaps (error 80004005)
Usage: <unclassified>
Allocation Base: 01150000
Base Address: 01150000
End Address: 01151000
Region Size: 00001000
Type: 00020000 MEM_PRIVATE
State: 00001000 MEM_COMMIT
Protect: 00000040 PAGE_EXECUTE_READWRITE
0:00