Merge branch 'master' of github.com:unicorn-engine/unicorn into sparc_regs

This commit is contained in:
mothran 2015-09-14 19:57:23 -07:00
commit 85b3594c7c

11
regress/sparc64.py Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/python
from unicorn import *
from unicorn.sparc_const import *
uc = Uc(UC_ARCH_SPARC, UC_MODE_64)
uc.reg_write(UC_SPARC_REG_SP, 100)
uc.reg_write(UC_SPARC_REG_FP, 100)
print 'writing sp = 100, fp = 100'
print 'sp =', uc.reg_read(UC_SPARC_REG_SP)
print 'fp =', uc.reg_read(UC_SPARC_REG_FP)