Unicorn CPU emulator framework (ARM, AArch64, M68K, Mips, Sparc, X86)
Go to file
2015-09-30 14:42:08 +08:00
bindings spaces to tabs in Makefile 2015-09-25 00:20:02 -07:00
docs Some polishment on the ascii art logo 2015-08-31 11:08:02 +02:00
include mips: advance PC for SYSCALL instruction. this fixes issue #157 2015-09-28 10:58:43 +08:00
qemu arm: properly handle the case when first insn in block is until address 2015-09-30 14:42:08 +08:00
samples do not use syscall to quit emulation. this can fix issues #147 & #148 2015-09-26 16:49:00 +08:00
tests handle 'bad ram pointer' case. this fixes issue #159 2015-09-29 18:22:22 +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 This commit continues the PR #111 2015-09-24 14:18:02 +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.