mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-18 14:47:17 +00:00
Removed unneeded arm mode check
This commit is contained in:
parent
26d3b1e7d6
commit
ec6d4d9ae0
9
uc.c
9
uc.c
|
@ -506,14 +506,7 @@ uc_err uc_emu_start(uc_engine* uc, uint64_t begin, uint64_t until, uint64_t time
|
|||
break;
|
||||
|
||||
case UC_ARCH_ARM:
|
||||
switch(uc->mode) {
|
||||
default:
|
||||
break;
|
||||
case UC_MODE_THUMB:
|
||||
case UC_MODE_ARM:
|
||||
uc_reg_write(uc, UC_ARM_REG_R15, &begin);
|
||||
break;
|
||||
}
|
||||
uc_reg_write(uc, UC_ARM_REG_R15, &begin);
|
||||
break;
|
||||
|
||||
case UC_ARCH_ARM64:
|
||||
|
|
Loading…
Reference in a new issue