• Stars
    star
    571
  • Rank 78,127 (Top 2 %)
  • Language
    JavaScript
  • License
    GNU General Publi...
  • Created over 8 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Unicorn CPU emulator framework port for JavaScript

Unicorn.js

Last Release

Port of the Unicorn CPU emulator framework for JavaScript. Powered by Emscripten.

Notes: Unicorn is a lightweight multi-architecture CPU emulator framework originally developed by Nguyen Anh Quynh, Dang Hoang Vu et al. and released under GPLv2 license. More information about contributors and license terms can be found in the files AUTHORS.TXT, CREDITS.TXT and COPYING inside the unicorn submodule of this repository.

Installation

To add Unicorn.js to your web application, include it with:

<script src="unicorn.min.js"></script>

or install it with the Bower command:

bower install unicornjs

Usage

var addr = 0x10000;
var code = [
  0x37, 0x00, 0xA0, 0xE3,  // mov r0, #0x37
  0x03, 0x10, 0x42, 0xE0,  // sub r1, r2, r3
];

// Initialize engine
var e = new uc.Unicorn(uc.ARCH_ARM, uc.MODE_ARM);

// Write registers and memory
e.reg_write_i32(uc.ARM_REG_R2, 0x456);
e.reg_write_i32(uc.ARM_REG_R3, 0x123);
e.mem_map(addr, 4*1024, uc.PROT_ALL);
e.mem_write(addr, code)

// Start emulator
var begin = addr;
var until = addr + code.length;
e.emu_start(begin, until, 0, 0);

// Read registers
var r0 = e.reg_read_i32(uc.ARM_REG_R0);  // 0x37
var r1 = e.reg_read_i32(uc.ARM_REG_R1);  // 0x333

Building

To build the Unicorn.js library, clone the master branch of this repository on a Linux machine, and do the following:

  1. Initialize the original Unicorn submodule: git submodule update --init.

  2. Install latest Emscripten SDK 2.0.21+. Follow the respective instructions and make sure all environment variables are configured correctly.

  3. Install the latest Python 3.8+. Make sure both python3 and python are callable. You can either setup alias or apt install python-is-python3

  4. Install the development dependencies with: npm install --also=dev.

  5. Install grunt with: npm install -g grunt

  6. Finally, build the source with: grunt build.

More Repositories

1

orbital

Experimental PlayStation 4 emulator.
C
3,589
star
2

nucleus

High-performance retargetable emulator
C++
232
star
3

capstone.js

Capstone disassembler framework for JavaScript
JavaScript
169
star
4

milli-py

Python bindings for Milli, the embeddable Rust-based search engine powering Meilisearch
Rust
123
star
5

keystone.js

Keystone assembler framework for JavaScript
HTML
75
star
6

curator

Automated normalization and curating of media collections
Python
53
star
7

codeql-python

Python bindings for CodeQL CLI
Python
48
star
8

blog

Articles and resources of my blog
HTML
45
star
9

psarc-tool

Port of Matthieu Milan's open PSARC PS3 extractor to Windows
C
40
star
10

cetrainer-unpacker

Extract and decrypt CheatEngine trainers from executables
Python
39
star
11

glslang.js

Real-time GLSL to SPIR-V, powered by Glslang
HTML
27
star
12

libelf.js

LibELF port for JavaScript
C
26
star
13

lv1-reversing

CellOS LV-1 Reverse Engineering
C++
23
star
14

hasher

Automatic detection of hashing algorithms
JavaScript
21
star
15

ntypes

Emulate native integer and floating-point types in Python
Python
20
star
16

nerve

Front-end for debuggers and disassemblers
TypeScript
17
star
17

ps3autotests

Automated PS3 integration tests for emulators
C++
16
star
18

invoice

Template to generate HTML/PDF invoices
JavaScript
14
star
19

pfs-fuse

FUSE driver for the PlayStation File System
13
star
20

ida

Collection of IDA Python plugins/scripts/modules
Python
11
star
21

gitlab-rouge

Static syntax highlighting for custom languages in GitLab CE/EE installations via Rouge hot-patching.
Ruby
4
star
22

dell-spacebar-fix

Software solution for double-space issues in Dell XPS 13/15 laptops
C++
3
star
23

orbital-slides

Orbital slides
JavaScript
3
star
24

nihongo

Random utilities to learn japanese
JavaScript
3
star
25

gitlab-monaco

Dynamic syntax highlighting for custom languages in GitLab CE/EE installations via Monaco hot-patching.
JavaScript
3
star
26

jitter

Random C++ utilities based on JIT-compilation
C++
2
star
27

website

Personal website
JavaScript
1
star
28

nv520-screen-fix

Software solution for random black screens with Nvidia GT520 after Windows 10 boot/wakeup
C++
1
star
29

ddns

Monitor public IPs on routers and update DNS records
Python
1
star
30

vm-tests

Hypervisor testing via QEMU
1
star
31

fakebot-admin

Admin dashboard for the Fakebot botnet monitoring tool
JavaScript
1
star