mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +08:00
16 lines
236 B
Python
16 lines
236 B
Python
from pykd import *
|
|
|
|
|
|
dprintln( "regs tests begin" )
|
|
|
|
al = reg("al")
|
|
ax = reg("ax")
|
|
eax = reg("eax")
|
|
|
|
|
|
dprintln( "al: " + str(al) )
|
|
dprintln( "ax: " + str(ax) )
|
|
dprintln( "eax: " + str(eax) )
|
|
|
|
|
|
dprintln( "regs tests end" ) |