Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/annapoorna-a-k/vm-translator-using-java
VM Translator using Java
https://github.com/annapoorna-a-k/vm-translator-using-java
assembler java nand2tetris nand2tetris-vm-translator virtual-machine vm-translator
Last synced: 9 days ago
JSON representation
VM Translator using Java
- Host: GitHub
- URL: https://github.com/annapoorna-a-k/vm-translator-using-java
- Owner: annapoorna-a-k
- Created: 2022-07-24T15:34:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-05T20:30:26.000Z (over 2 years ago)
- Last Synced: 2023-03-11T09:22:36.125Z (over 1 year ago)
- Topics: assembler, java, nand2tetris, nand2tetris-vm-translator, virtual-machine, vm-translator
- Language: Java
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VMTranslator-using-Java
This is a Virtual Machine Language Translator made using Java which Translates VM language code into assembly code.
This VM Translator has three modules:
1. VMTranslator.java which is the top-most/ main module which drives the process.
2. Parser.java which reads a VM command, parses the command into its lexical components, and provides convenient access to these components. It also removes all the white-spaces and comments.
3. CodeWriter.java which generates the actual assembly codes by translating the VM codes.