x86 virtualization in JavaScript, running in your browser and NodeJS (mirror)
Fabian 693b905013 Remove ENABLE_PROFILER (is configured via cargo.toml) | преди 3 години | |
---|---|---|
.cargo | преди 4 години | |
bios | преди 3 години | |
docker | преди 4 години | |
docs | преди 3 години | |
examples | преди 8 години | |
gen | преди 3 години | |
lib | преди 3 години | |
src | преди 3 години | |
tests | преди 3 години | |
tools | преди 3 години | |
.gitignore | преди 3 години | |
.jshint.json | преди 3 години | |
.rustfmt.toml | преди 3 години | |
Cargo.toml | преди 3 години | |
LICENSE | преди 3 години | |
Makefile | преди 3 години | |
Readme.md | преди 4 години | |
debug.html | преди 3 години | |
index.html | преди 3 години | |
loader.js | преди 3 години | |
package.json | преди 4 години | |
v86.css | преди 3 години |
See docker/test-image/Dockerfile
for a full setup on Debian.
You need:
Run make all-debug
to build the debug build (at debug.html
).
Run make all
to build the optimized build (at index.html
).
Run all tests: make jshint rustfmt kvm-unit-test nasmtests nasmtests-force-jit expect-tests jitpagingtests qemutests rust-test tests
See docker/debian-full/Readme.md
.
Using v86 for your own purposes is as easy as:
var emulator = new V86Starter({
screen_container: document.getElementById("screen_container"),
bios: {
url: "../../bios/seabios.bin",
},
vga_bios: {
url: "../../bios/vgabios.bin",
},
cdrom: {
url: "../../images/linux.iso",
},
autostart: true,
});
See API.
v86 emulates an x86-compatible CPU and hardware. Here's a list of emulated hardware:
The disk images are not included in this repository. You can download them directly from the website using:
wget -P images/ https://copy.sh/v86/images/{linux.iso,linux3.iso,kolibri.img,windows101.img,os8.dsk,freedos722.img,openbsd.img}
.
A testsuite is available in tests/full/
. Run it using node tests/full/run.js
.
make build/v86_all.js
.index.html
locally, make sure to serve it from a local webserver. You can use make run
to serve the files using Python's SimpleHTTPServer.wget -P images/ https://copy.sh/v86/images/{linux.iso,linux3.iso,kolibri.img,windows101.img,os8.dsk,freedos722.img,openbsd.img}
.Short summary:
# grab the main repo
git clone https://github.com/copy/v86.git && cd v86
# grab the disk images
wget -P images/ https://copy.sh/v86/images/{linux.iso,linux3.iso,kolibri.img,windows101.img,os8.dsk,freedos722.img,openbsd.img}
# grab closure compiler
wget -P closure-compiler https://dl.google.com/closure-compiler/compiler-latest.zip
unzip -d closure-compiler closure-compiler/compiler-latest.zip *.jar
# build the library
make build/libv86.js
# run the tests
./tests/full/run.js
Here's an overview of the operating systems supported in v86:
udev
and X
fail, but you get a
terminal.You can get some infos on the disk images here: https://github.com/copy/images.
Simplified BSD License, see LICENSE, unless otherwise noted.
Shoot me an email to copy@copy.sh
. Please don't tell about bugs via mail,
create a bug report on GitHub instead.
Fabian Hemmer (http://copy.sh/, copy@copy.sh
)