Skip to content

Orbit2x/mujsc

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MuJS Compiler

Small subset of ES5 to x86_64 assembly based on MuJS.

Quick Start

$ cc -o nob nob.c
$ ./nob
$ cat ./examples/example.js
var a = 34;
var b = 35;
print_int(a);
a += b;
print_int(a);
$ ./build/mujsc ./examples/example.js ./examples/example
$ ./examples/example
34
69

Screencast

This project was originally started on a livestream:

thumbnail

About

MuJS Compiler

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 91.7%
  • HTML 5.4%
  • Makefile 0.8%
  • JavaScript 0.7%
  • Shell 0.6%
  • Python 0.5%
  • Other 0.3%