uc_mem_read() & uc_mem_write() now can work on adjacent memory areas. this fixes issue #38

This commit is contained in:
Nguyen Anh Quynh
2015-08-29 10:23:53 +08:00
parent ff46b91a80
commit 810054ca6d
2 changed files with 71 additions and 17 deletions

View File

@ -5,4 +5,4 @@ uc = Uc(UC_ARCH_X86, UC_MODE_32)
uc.mem_map(0x0000, 0x2000)
uc.mem_map(0x2000, 0x4000)
uc.mem_write(0x1000, 0x1004 * ' ')
print 'Not reached on x86_64 Linux.'
print 'If not reached, then we have BUG (crash on x86_64 Linux).'