mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 14:18:08 +00:00
75d90aff52
* make cleanup * Update .travis.yml Update eflags_nosync.c Update sigill2.c Update ro_mem_test.c Update ro_mem_test.c Update nr_mem_test.c Update mem_fuzz.c Update mem_double_unmap.c Update emu_stop_in_hook_overrun.c Update eflags_nosync.c remove unused Update Makefile Update Makefile Update Makefile Update Makefile Update Makefile Update Makefile Update Makefile Update mem_64_c.c Update mem_64_c.c Update Makefile Update Makefile Update Makefile Update Makefile Update Makefile Update Makefile Update .travis.yml try android ndk build Update unicorn.py Update unicorn.py Update Makefile Update unicorn.py Update unicorn.py remove an untrue comment if a dll/so/dylib gets loaded at runtime is dependent on many different factors, primarily the LD/DYLD paths. Those do not always include the current working directory Update Makefile Update .appveyor.yml Update .travis.yml Update Makefile Update .appveyor.yml Fix bad sample * Update Makefile * Update Makefile * Update install-cmocka-linux.sh * remove verbose option from tar * add upgrade to pacman for cmake * pacman double update, needed to get new packages * enable cmocka unit testing * rejigger commands to fail on any step should get fails in msys builds for cmocka * fix quote * make cmocka in cygwin only * add msys cache
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
#include <stdio.h>
|
|
#include <inttypes.h>
|
|
#include <unicorn/unicorn.h>
|
|
|
|
uint64_t starts[] = {0x10000000, 0x110004000ll};
|
|
|
|
int main(int argc, char **argv, char **envp) {
|
|
uc_engine *uc;
|
|
uc_err err;
|
|
int i;
|
|
// Initialize emulator in X86-64bit mode
|
|
err = uc_open(UC_ARCH_X86, UC_MODE_64, &uc);
|
|
if (err) {
|
|
printf("Failed on uc_open() with error returned: %u\n", err);
|
|
return 1;
|
|
}
|
|
|
|
for (i = 0; i < (sizeof(starts) / sizeof(uint64_t)); i++) {
|
|
uc_mem_map(uc, starts[i], 4096, UC_PROT_ALL);
|
|
}
|
|
|
|
uint32_t count;
|
|
uc_mem_region *regions;
|
|
int err_count = 0;
|
|
err = uc_mem_regions(uc, ®ions, &count);
|
|
if (err == UC_ERR_OK) {
|
|
for (i = 0; i < count; i++) {
|
|
fprintf(stderr, "region %d: 0x%"PRIx64"-0x%"PRIx64" (%d)\n", i, regions[i].begin, regions[i].end - 1, regions[i].perms);
|
|
if (regions[i].begin != starts[i]) {
|
|
err_count++;
|
|
fprintf(stderr, " ERROR: region start does not match requested start address, expected 0x%"PRIx64", found 0x%"PRIx64"\n",
|
|
starts[i], regions[i].begin);
|
|
}
|
|
}
|
|
free(regions);
|
|
}
|
|
|
|
uc_close(uc);
|
|
return err_count;
|
|
}
|