An open API service indexing awesome lists of open source software.

https://github.com/nownabe/x86-board

An emulator of x86 assembly with indicators for registers and memories on web browser.
https://github.com/nownabe/x86-board

ruby

Last synced: 9 months ago
JSON representation

An emulator of x86 assembly with indicators for registers and memories on web browser.

Awesome Lists containing this project

README

          

# Run locally
```bash
docker run -p 9292:80 nownabe/x86-emulator-js
```

# Development
## Run
```bash
bundle exec puma
```

## Bundle
```bash
cd public
jspm bundle-sfx src/index bundle.js --minify --skip-source-maps
```

## Build
```bash
docker build -t x86-emulator-js .
docker run -p 9292:80 x86-emulator-js
```

## Test to Assemble
```bash
curl -s -X POST localhost:9292/assemble -d@server-test.json | jq
```