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.
- Host: GitHub
- URL: https://github.com/athkarandikar/two-pass-assembler
- Owner: athkarandikar
- License: gpl-3.0
- Created: 2025-02-22T08:32:47.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-02-22T09:29:18.000Z (11 months ago)
- Last Synced: 2025-02-22T09:39:40.069Z (11 months ago)
- Topics: assembler, java, language-processing, pass-2-assembler
- Language: Java
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).