-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
51 lines (35 loc) · 1.49 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: default
---
<b>Unicorn</b> is a lightweight multi-platform, multi-architecture CPU emulator framework.
<p>
Highlight features:
<ul>
<li>Multi-architectures: ARM, ARM64 (ARMv8), m68k, MIPS, PowerPC, RISC-V, S390x (SystemZ), SPARC, TriCore & x86 (include x86_64).</li>
<li>Clean/simple/lightweight/intuitive architecture-neutral API.</li>
<li>Implemented in pure C language, with bindings for Pharo, Crystal, Clojure, Visual Basic, Perl, Rust, Haskell, Ruby, Python, Java, Go, D, Lua, JavaScript, .NET, Delphi/Pascal & MSVC available.</li>
<li>Native support for Windows & *nix (with macOS, Linux, Android, *BSD & Solaris confirmed).</li>
<li>High performance by using Just-In-Time compiler technique.</li>
<li>Support fine-grained instrumentation at various levels.</li>
<li>Thread-safe by design.</li>
<li>Distributed under free software license GPLv2.</li>
</ul>
</p>
Find in this <a href="BHUSA2015-unicorn.pdf">BlackHat USA 2015 slides</a> more technical details behind Unicorn engine.
<p>
Unicorn is based on <a href="http://www.qemu.org">QEMU</a>, but it goes much further with <a href="/docs/beyond_qemu.html">a lot more to offer</a>.
</p>
<hr>
<div class="posts">
{% for post in site.tags.news %}
<article class="post">
<h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<div class="date">
{{ post.date | date: "%B %e, %Y" }}
</div>
<div class="entry">
{{ post.content }}
</div>
</article>
{% endfor %}
</div>