mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 12:53:23 +08:00
git-svn-id: https://pykd.svn.codeplex.com/svn@50348 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
a7765dfb9e
commit
69397dcc3d
@ -1,8 +0,0 @@
|
||||
from pykd import *
|
||||
|
||||
dprint ( "hello windbg!\n" )
|
||||
dprintln ( "hello windbg!" )
|
||||
hello = "hello windbg!"
|
||||
dprintln( hello )
|
||||
dprintln( hello + " from python" )
|
||||
|
16
test/regs.py
16
test/regs.py
@ -1,16 +0,0 @@
|
||||
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" )
|
13
test/type.py
13
test/type.py
@ -1,13 +0,0 @@
|
||||
from pykd import *
|
||||
|
||||
dprintln( "type test begin" )
|
||||
|
||||
idtr=reg("idtr")
|
||||
|
||||
var = typedVar( "nt", "_KIDTENTRY", idtr )
|
||||
|
||||
for t, v in var.iteritems():
|
||||
dprintln( t + " : " + str(v) )
|
||||
|
||||
|
||||
dprintln( "type test end" )
|
Loading…
Reference in New Issue
Block a user