This repository was archived by the owner on Jul 3, 2020. It is now read-only.
Releases: runtimejs/runtime
Releases · runtimejs/runtime
runtime.js v0.1.1
Version 0.1.1 of runtime.js kernel. Includes simple JavaScript REPL.
- Fixed
I/O thread has spun for 1000 iterationsbug in QEMU
To run:
- Install QEMU
- Download kernel.bin and initrd files from this release
- Run
qemu-system-x86_64 \
-m 512 \
-smp 1 \
-kernel kernel.bin \
-initrd initrd \
-serial stdio
runtime.js v0.1.0
Version 0.1.0 of runtime.js kernel. Includes simple JavaScript REPL.
- Added setTimeout and console.log in terminal app
To run:
- Install QEMU
- Download kernel.bin and initrd files from this release
- Run
qemu-system-x86_64 \
-m 512 \
-smp 1 \
-kernel kernel.bin \
-initrd initrd \
-serial stdio
runtime.js v0.0.1-alpha
First version of runtime.js kernel. Includes simple JavaScript REPL.
To run:
- Install QEMU
- Download kernel.bin and initrd files from this release
- Run
qemu-system-x86_64 \
-m 512 \
-smp 2 \
-kernel kernel.bin \
-initrd initrd \
-serial stdio