It is a simple code written in Assembly Language to to Check Prime, Print Uppercase Letters, Print Lowercase Letters, Print Numbers and Print first seven terms of Fibonacci Series.
-
Use these command in dosbox to
CompileandRunthe code:ml main.asmmain.exeThe code performs the following operation:
- Prints all uppercase letters if the entered letter is ‘U’
- Prints all lowercase letters if the entered letter is ‘L’
- Prints number between 0-9 if the entered letter is ‘N’
- Prints first seven terms of Fibonacci series using loop if the entered letter is ‘F’
- If entered letter is ‘P’ then takes a single digit number an input and displays whether its prime or not (‘P’ or ‘N’)
