An open API service indexing awesome lists of open source software.

https://github.com/athkarandikar/two-pass-assembler

Implementation of two-pass assembler in Java. Pass 1 deals with the generation of literal, symbol, and pool tables. Pass 2 deals with intermediate code generation.
https://github.com/athkarandikar/two-pass-assembler

assembler java language-processing pass-2-assembler

Last synced: 11 months ago
JSON representation

Implementation of two-pass assembler in Java. Pass 1 deals with the generation of literal, symbol, and pool tables. Pass 2 deals with intermediate code generation.

Awesome Lists containing this project

README

          

Implementation of two-pass assembler in Java.

Pass 1 generates:
- Literal table
- Symbol table
- Pool table

Pass 2 generates intermediate code.

A few assumptions are made for the assembly code input. Read them [here](https://github.com/athkarandikar/two-pass-assembler/blob/main/assumptions.txt).