Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sameetasadullah/check-prime-and-print-operations-in-assembly

Code written in Assembly Language to check Prime, Print Uppercase Letters, Print Lowercase Letters, Print Numbers and Print first seven terms of Fibonacci Series
https://github.com/sameetasadullah/check-prime-and-print-operations-in-assembly

8086-architecture assembly-language dosbox fibonacci-sequence masm615 prime-numbers

Last synced: about 2 months ago
JSON representation

Code written in Assembly Language to check Prime, Print Uppercase Letters, Print Lowercase Letters, Print Numbers and Print first seven terms of Fibonacci Series

Awesome Lists containing this project

README

        

Check Prime and Print Operations in Assembly

### Description
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`.

### Manual
1) Use these command in dosbox to `Compile` and `Run` the code:
```
ml main.asm
```
```
main.exe
```
The 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’)