Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sameetasadullah/check-prime-and-print-operations-in-assembly
- Owner: SameetAsadullah
- Created: 2022-07-22T20:17:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-22T20:26:37.000Z (over 2 years ago)
- Last Synced: 2023-03-10T20:47:04.793Z (almost 2 years ago)
- Topics: 8086-architecture, assembly-language, dosbox, fibonacci-sequence, masm615, prime-numbers
- Language: Assembly
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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’)