mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 08:38:25 +00:00
18 lines
431 B
Python
Executable file
18 lines
431 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
from unicorn import *
|
|
from unicorn.arm_const import *
|
|
|
|
import regress
|
|
|
|
class VldrPcInsn(regress.RegressTest):
|
|
|
|
def runTest(self):
|
|
uc = Uc(UC_ARCH_ARM, UC_MODE_ARM)
|
|
uc.mem_map(0x1000, 0x1000)
|
|
uc.mem_write(0x1000, 'ed9f8a3d'.decode('hex')) # vldr s16, [pc, #244]
|
|
# this will raise invalid insn
|
|
uc.emu_start(0x1000, 0x1004)
|
|
|
|
if __name__ == '__main__':
|
|
regress.main()
|