git-svn-id: https://pykd.svn.codeplex.com/svn@50348 9b283d60-5439-405e-af05-b73fd8c4d996

This commit is contained in:
SND\kernelnet_cp 2010-07-06 14:53:38 +00:00
parent a7765dfb9e
commit 69397dcc3d
3 changed files with 0 additions and 37 deletions

View File

@ -1,8 +0,0 @@
from pykd import *
dprint ( "hello windbg!\n" )
dprintln ( "hello windbg!" )
hello = "hello windbg!"
dprintln( hello )
dprintln( hello + " from python" )

View File

@ -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" )

View File

@ -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" )