No description
Find a file
Nguyen Anh Quynh 9e64cba6ec Rename some hook related enums:
- UC_ERR_READ_INVALID -> UC_ERR_READ_UNMAPPED
 - UC_ERR_WRITE_INVALID -> UC_ERR_WRITE_UNMAPPED
 - UC_ERR_FETCH_INVALID -> UC_ERR_FETCH_UNMAPPED
 - UC_MEM_READ_INVALID -> UC_MEM_READ_UNMAPPED
 - UC_MEM_WRITE_INVALID -> UC_MEM_WRITE_UNMAPPED
 - UC_MEM_FETCH_INVALID -> UC_MEM_FETCH_UNMAPPED
 - UC_HOOK_MEM_READ_INVALID -> UC_HOOK_MEM_READ_UNMAPPED
 - UC_HOOK_MEM_WRITE_INVALID -> UC_HOOK_MEM_WRITE_UNMAPPED
 - UC_HOOK_MEM_FETCH_INVALID -> UC_HOOK_MEM_FETCH_UNMAPPED
 - UC_HOOK_MEM_INVALID -> UC_HOOK_MEM_UNMAPPED

This also renames some newly added macros to use _INVALID postfix:

 - UC_HOOK_MEM_READ_ERR -> UC_HOOK_MEM_READ_INVALID
 - UC_HOOK_MEM_WRITE_ERR -> UC_HOOK_MEM_WRITE_INVALID
 - UC_HOOK_MEM_FETCH_ERR -> UC_HOOK_MEM_FETCH_INVALID
 - UC_HOOK_MEM_ERR -> UC_HOOK_MEM_INVALID

Fixed all the bindings Java, Go & Python.
2015-09-30 14:46:55 +08:00
bindings Rename some hook related enums: 2015-09-30 14:46:55 +08:00
docs Some polishment on the ascii art logo 2015-08-31 11:08:02 +02:00
include Rename some hook related enums: 2015-09-30 14:46:55 +08:00
qemu Rename some hook related enums: 2015-09-30 14:46:55 +08:00
samples Rename some hook related enums: 2015-09-30 14:46:55 +08:00
tests Rename some hook related enums: 2015-09-30 14:46:55 +08:00
.gitignore update .gitignore 2015-09-24 13:52:10 +08:00
AUTHORS.TXT import 2015-08-21 15:04:50 +08:00
COMPILE.TXT correct supported archs in COMPILE.TXT 2015-09-22 12:12:17 +08:00
config.mk import 2015-08-21 15:04:50 +08:00
COPYING import 2015-08-21 15:04:50 +08:00
CREDITS.TXT update CREDITS 2015-09-05 09:12:15 +08:00
hook.c This commit continues the PR #111 2015-09-24 14:18:02 +08:00
LEAK_VALGRIND import 2015-08-21 15:04:50 +08:00
make.sh Fixing compile on windows with mingw 2015-08-29 17:04:48 +02:00
Makefile Missing update on make test clean 2015-09-21 21:04:20 -05:00
pkgconfig.mk import 2015-08-21 15:04:50 +08:00
README.md m68k -> M68K, x86 -> X86 2015-09-22 10:00:05 +08:00
uc.c Rename some hook related enums: 2015-09-30 14:46:55 +08:00

Unicorn Engine

Unicorn is a lightweight, multi-platform, multi-architecture CPU emulator framework based on QEMU.

Unicorn offers some unparalleled features:

  • Multi-architecture: ARM, AMM64 (ARMv8), M68K, MIPS, SPARC, and X86 (16, 32, 64-bit)
  • Clean/simple/lightweight/intuitive architecture-neutral API
  • Implemented in pure C language, with bindings for Python, Java, and Go
  • Native support for Windows & *nix (with Mac OSX, Linux, *BSD & Solaris confirmed)
  • High performace via Just-In-Time compilation
  • Support for fine-grained instrumentation at various levels
  • Thread-safety by design
  • Distributed under open source license GPL

Further information is available at http://www.unicorn-engine.org

Compilation

See COMPILE.TXT file for how to compile and install Unicorn.

License

This project is released under the GPL license.