mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 02:15:37 +00:00
Remove space.
This commit is contained in:
parent
76ed117df6
commit
8af4967707
|
@ -25,7 +25,7 @@ int main(int argc, char **argv, char **envp) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
uc_hook hook;
|
uc_hook hook;
|
||||||
uc_hook_add(uc, &hook, UC_HOOK_BLOCK, hook_block, NULL, (uint64_t)1, (uint64_t)0);
|
uc_hook_add(uc, &hook, UC_HOOK_BLOCK, hook_block, NULL, (uint64_t)1, (uint64_t)0);
|
||||||
printf("uc_emu_start(…)\n");
|
printf("uc_emu_start(…)\n");
|
||||||
uc_emu_start(uc, STARTING_ADDRESS, STARTING_ADDRESS + sizeof(BINARY) - 1, 0, 0);
|
uc_emu_start(uc, STARTING_ADDRESS, STARTING_ADDRESS + sizeof(BINARY) - 1, 0, 0);
|
||||||
printf("done\n");
|
printf("done\n");
|
||||||
|
|
Loading…
Reference in a new issue