










Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Project report on micro processor and micro controllers using 8081
Typology: Study Guides, Projects, Research
1 / 18
This page cannot be seen from the preview
Don't miss anything!











Sushanth - 16311A
M.RAMESH - 16311A
Y.SAIKIRAN REDDY -16311A
Yamnampet, Ghatkesar, Hyderabad – 501301
degree of Bachelor of Technology in Electronics and Communication Engineering. This dissertation is our original work and the project has not formed the basis for the award of any degree, associate ship, fellowship or any other similar titles and no part of it has been published or sent for the publication at the time of submission.
Sushanth - 16311A
M.RAMESH - 16311A
Y.SAIKIRAN REDDY -16311A
Sreenidhi Institute Of Science and Technology
Yamnampet,Ghatkesar,Hyderabad-
Department Of Electronics & Communication Engineering
Abstract :- Assembly language is a family of backward-compatible assembly languages, which provide some level of compatibility all the way back to the 8086. assembly languagesare used to produce object code for the x86 class of processors. Like all assembly languages, it uses short mnemonics to represent the fundamental instructions that the CPU in a computer can understand and follow.
A composite number is a positive integer that can be formed by multiplying together two smaller positive integers. Equivalently, it is a positive integer that has at least one divisor other than 1 and itself. Every positive integer is composite, prime, or the unit 1, so the composite numbers are exactly the numbers that are not prime and not a unit.
One way to classify composite numbers is by counting the number of prime factors. A composite number with two prime factors is a semiprime or 2-almost prime (the factors need not be distinct, hence squares of primes are included). A composite number with three distinct prime factors is a sphenic number. In some applications, it is necessary to differentiate between composite numbers with an odd number of distinct prime factors and those with an even number of distinct prime factors.
Submitted By
P.AKHIL YADAV (16311A04AG)
P.SHIVA KUMAR (16311A04AH)
or not using 8086 microprocessor.
A composite number is a positive integer that can be formed by multiplying together two smaller positive integers. Equivalently, it is a positive integer that has at least one divisor other than 1 and itself. Every positive integer is composite, prime, or the unit 1, so the composite numbers are exactly the numbers that are not prime and not a unit.
One way to classify composite numbers is by counting the number of prime factors. A composite number with two prime factors is a semiprime or 2-almost prime (the factors need not be distinct, hence squares of primes are included). A composite number with three distinct prime factors is a sphenic number. In some applications, it is necessary to differentiate between composite numbers with an odd number of distinct prime factors and those with an even number of distinct prime factors.
Composite numbers have also been called "rectangular numbers", but that name can also refer to the pronic numbers, numbers that are the product of two consecutive integers.
Step1 : Take n as input.
Step2 : Run a loop from i = n to 1. For each iteration, check if i divides n completely or not. If it does, then i is n’s divisor
Step3 : Keep a count of the total number of divisors of n
Step4 : If the count of divisors is not equal to 2, then the number is composite, else prime
Step5:Stop