Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 489 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 489 Bytes

Macro_Assembler

Here we written Macro code for using that block of statement in our program again and again...

whenever my macro function is called, my macro code is copied over that function...

And code is generated as my Assembly language...

To run that code type ->

python macro_assembler.py

After running this code my file generate nihal.asm file which is nasm assembly language program as...

nihal.asm

which can be direclly run as nasm program.

...Thank You...