nandtotetris / computer-visualizer

0 stars 0 forks source link

feat: hvm translator stage one #35

Closed mezzzi closed 3 years ago

mezzzi commented 4 years ago

In our basic computer, a high level language (Jack) is first compiled to an intermediate language that runs on a virtual machine. This PR focuses on building the first stage for the hvm-translator abstraction; the abstraction which translates the hack virtual machine (HVM) intermediate language to an assembly code.

For more description, refer here: https://www.nand2tetris.org/course (Project 7)

Closes #23

What kind of change does this PR introduce? This PR introduces a new feature by adding a parser module for the HVM Translator abstraction.