Z80

JS → Z80

Real JavaScript. Real Parser. Real Z80 Binary. Absolutely unreal life choices.

CRT
1
2
3
4
5
6
7
8
9
10
11
// Real JavaScript → Real Z80 binary
let a = 5;
let b = 10;
let c = a + b;
if (c > 10) {
console.log(c);
} else {
let d = c * 2;
console.log(d);
}
AST will appear here after compilation. This is a REAL recursive-descent parser, not regex hacking.
○ Ready

Built with love, caffeine, a real recursive-descent parser, and mass amounts of 8-bit nostalgia

💡 The Z80 was designed by Federico Faggin in 1976

Remix on Berrry