mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 07:28:13 +00:00
Update test_hang.c
This commit is contained in:
parent
f2998f14cd
commit
0137a66c61
1 changed files with 2 additions and 2 deletions
|
@ -88,8 +88,8 @@ void test_hang(void **state)
|
|||
uc_reg_read(uc, UC_ARM64_REG_X0, &x0);
|
||||
uc_reg_read(uc, UC_ARM64_REG_X1, &x1);
|
||||
|
||||
printf("x0: %"PRIu64"\n", x0);
|
||||
printf("x1: %"PRIu64"\n", x1);
|
||||
printf("x0: %"PRIx64"\n", x0);
|
||||
printf("x1: %"PRIx64"\n", x1);
|
||||
}
|
||||
|
||||
int main(int argc, const char * argv[]) {
|
||||
|
|
Loading…
Reference in a new issue