You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Various programs like fibonacci, factorial, matrix operation, string
manipulation, etc. are implemented in assembly language using TASM.
The name of each file in the repo defines the program.
The user can open the file and read the first commented line to
determine what the program does.
To run the programs, install DOSBOX and TASM on your pc.
You can find easily on google how to install them.
Running the programs :
After installing DOSBOX and TASM, in the DOS prompt, type 'tasm filename'
to convert the source program into an object file.
Then type 'tlink filename'. This command uses linker TLINK to
link files together into an executable file 'filename.exe'.
Execute the file by typing the 'filename'. The program get
executed and the output is displayed on DOS prompt.
You can edit the file in any editor but save the file using the
extension .asm.
About
The repo consists of different programs like fibonacci, factorial, matrix operation, string manipulation implemented in assembly language using TASM.