Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 482 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 482 Bytes

Jack Compiler

Compiler for the Jack Lanaguage from Nand2Tetris.

The Jack compiler is almost always an LL(1) compiler except for in a few rare LL(2) cases.

The Jack compiler is a two-tiered compiler with the first step compiling source code to VM Code (very simlar to Java bytecode) and the second step translating the VM Code.

Jack Language

The Jack language is the language developed for Nand2Tetris. It has a very simple Java like syntax.