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

https://github.com/namn-grg/assembler

This Assembler converts assembly code into binary code according to its ISA
https://github.com/namn-grg/assembler

assembly python3

Last synced: about 1 month ago
JSON representation

This Assembler converts assembly code into binary code according to its ISA

Awesome Lists containing this project

README

          

# Assembler
This is an Assembler, it converts assembly code into binary code according to its ISA (Instruction Set Architecture)

IT ALSO DETECTS AND POINTS OUT ANY SYNTAX ERROR IN THE ASSEMBLY CODE OF THE INPUT FILE
***********************************************************************************************************************************
Discription of this assembler's ISA is given in complete detail in the problem statement pdf eg. syntax of the assembley code which
this assembler accepts , opcode of the insructions etc.
***********************************************************************************************************************************
There is a sample test case file given for reference. You can take a look and can see how the assembly code file looks like for this assembler.
Moreover, there's an output file for the same test case, which has the binary code for the given assembly code.

This assembler works perfect even if Floating point numbers are given.