mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-08 23:05:30 +00:00
Fixed minor typos
This commit is contained in:
parent
d6fee1fd6a
commit
b5ea277900
|
@ -470,7 +470,7 @@ static void test_i386_invalid_mem_read(void)
|
|||
uc_close(uc);
|
||||
}
|
||||
|
||||
// emulate code that read invalid memory
|
||||
// emulate code that write invalid memory
|
||||
static void test_i386_invalid_mem_write(void)
|
||||
{
|
||||
uc_engine *uc;
|
||||
|
@ -532,7 +532,7 @@ static void test_i386_invalid_mem_write(void)
|
|||
if (!uc_mem_read(uc, 0xaaaaaaaa, &tmp, sizeof(tmp)))
|
||||
printf(">>> Read 4 bytes from [0x%x] = 0x%x\n", 0xaaaaaaaa, tmp);
|
||||
else
|
||||
printf(">>> Failed to read 4 bytes from [0x%x]\n", 0xffffffaa);
|
||||
printf(">>> Failed to read 4 bytes from [0x%x]\n", 0xaaaaaaaa);
|
||||
|
||||
if (!uc_mem_read(uc, 0xffffffaa, &tmp, sizeof(tmp)))
|
||||
printf(">>> Read 4 bytes from [0x%x] = 0x%x\n", 0xffffffaa, tmp);
|
||||
|
|
Loading…
Reference in a new issue