Testing js-dos

Recenlty I discovered the project Emscripten:

Emscripten is an LLVM-to-JavaScript compiler. It takes LLVM bitcode - which can be generated from C/C++, using llvm-gcc (DragonEgg) or clang, or any other language that can be converted into LLVM - and compiles that into JavaScript, which can be run on the web (or anywhere else JavaScript can run).

And after this discovered the js-dos project:

A javascript version of dosbox that can run dos programs and games in browser. js-dos provides javascript API to easily run DOS programs and games in browser. This API allows to run unmodified versions of DOS programs, in other words you can run DOS binary in browser.

js-dos use Emscripten and em-dosbox projects do built his easy-to-use api.

Below I made a test with it and put one of my first games, a Nibble clone wrote with 461 lines of C to run in browser.

This is all JS code to start js-dos in this sample:

var dosbox = new Dosbox({
    id: "dosbox",
    onload: function (dosbox) {
      dosbox.run("NIBBLE.zip", "./NIBBLE.EXE");
    },
    onrun: function (dosbox, app) {
      console.log("App '" + app + "' is runned");
    }
  });

Below is the result. Enjoy it!

The full sample can be download here: sample.

Note: tested on Chrome 64 bits.

Loading comments...
Tutorials

Articles

Labs