answersLogoWhite

0

program to find Prime number in 8085 microprocessor

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Basic Math

What is the product of the prime factors of 8085?

The prime factors of 8,085 are: 3, 5, 7 and 11. 3 x 5 x 7 x 11 = 1,155


What is the Difference between near and far call in 8085?

In the 8085 microprocessor, a "near call" refers to a subroutine call within the same memory segment, typically allowing for a return to the next instruction using a simple return instruction (RET). A "far call," on the other hand, is used to call a subroutine located in a different memory segment, requiring the processor to save both the program counter and the segment information. This distinction affects how memory addresses are handled and how the stack is utilized during subroutine calls and returns.


What the Difference between accumulator and register?

The accumulator is a general register that holds a value. It is also a special register that can be used as the target for the result of various arithmetic or logical computations. For instance, if you wanted to add two numbers, you could load the first into the accumulator, add the second to the accumulator, and then store the accumulator where wanted. The instruction register is an internal register that holds the value of the instruction opcode in order for the 8085 to decode and process the instruction. While it is shown on the Intel block diagram for the 8085, it is not directly accessible by the running program - it is for internal use only by the 8085.


Program to convert hex to decimal in 8085?

jump,b


Subtraction of two 8 bit numbers in 8085?

Mvi a, 04h 3e mvi b, 04 h 04 add b 06 sta 2050 04 hlt 80 32 50 20 76