Skip to content
This repository was archived by the owner on Jul 3, 2020. It is now read-only.

Releases: runtimejs/runtime

runtime.js v0.1.1

28 Jun 23:51

Choose a tag to compare

Version 0.1.1 of runtime.js kernel. Includes simple JavaScript REPL.

  • Fixed I/O thread has spun for 1000 iterations bug in QEMU

To run:

  1. Install QEMU
  2. Download kernel.bin and initrd files from this release
  3. Run
qemu-system-x86_64                                \
    -m 512                                        \
    -smp 1                                        \
    -kernel kernel.bin                            \
    -initrd initrd                                \
    -serial stdio

runtime.js v0.1.0

20 Jun 20:54

Choose a tag to compare

Version 0.1.0 of runtime.js kernel. Includes simple JavaScript REPL.

  • Added setTimeout and console.log in terminal app

To run:

  1. Install QEMU
  2. Download kernel.bin and initrd files from this release
  3. Run
qemu-system-x86_64                                \
    -m 512                                        \
    -smp 1                                        \
    -kernel kernel.bin                            \
    -initrd initrd                                \
    -serial stdio

runtime.js v0.0.1-alpha

07 Jun 19:39

Choose a tag to compare

Pre-release

First version of runtime.js kernel. Includes simple JavaScript REPL.

To run:

  1. Install QEMU
  2. Download kernel.bin and initrd files from this release
  3. Run
qemu-system-x86_64                                \
    -m 512                                        \
    -smp 2                                        \
    -kernel kernel.bin                            \
    -initrd initrd                                \
    -serial stdio