Discuss
menu
search
person
Login
Register
search
edit
Ask a Question
Discuss
All Activity
Q&A
Questions
Hot!
Unanswered
Tags
Users
Ask a Question
Recent questions tagged microprocessor
asked
Jan 6
by
anonymous
Define memory segmentation. How memory segmentation is achieved in 8086? State advantages of memory segmentation.
Define memory segmentation. How memory segmentation is achieved in 8086? State advantages of memory segmentation.
Last answer:
Memory Segmentation: The memory in an 8086 microprocessor is organized as a segmented memory. The physical memory is divided into 4 segments namely, - Data segment, Code Segment, Stack Segment and Extra ... 16 bit size. 6) Programs and data can be stored separately from each other in segmentation.
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
14
views
1
answer
asked
Jan 6
by
anonymous
Enlist the features of 8085 microprocessor.
Enlist the features of 8085 microprocessor.
Last answer:
Features of 8085 microprocessor: 1. 16 address line so 216=64 Kbytes of memory can be addressed. 2. Operating clock frequency is 3MHz and minimum clock frequency is 500 KHz. 3. On chip bus ... cycle TTL clock 10. Provide 2 serial I/O lines, so peripheral can be interfaced with 8085 μp
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
3
views
1
answer
asked
Jan 6
by
anonymous
Describe the functions of stack pointer and program counter of 8085.
Describe the functions of stack pointer and program counter of 8085.
Last answer:
Stack pointer: 1. It is a 16 bit register which is used to store the address of topmost filled memory location of stack memory. 2. SP always points current top of stack. 3. If data is ... of memory and in 8085 the address of memory is 16 bit. Hence program counter is 16 bit register.
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
2
views
1
answer
asked
Jan 6
by
anonymous
Describe re-entrant procedure with the help of schematic diagram.
Describe re-entrant procedure with the help of schematic diagram.
Last answer:
Re-entrant Procedures: A procedure is said to be re-entrant, if it can be interrupted, used and re-entered without losing or writing over anything. To be a re-entrant, Procedure ... program execution flow reenters in the procedure1. These types of procedures are called reentrant procedures.
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
8
views
1
answer
asked
Jan 6
by
anonymous
Explain the following assembler directives. 1) DB 2) DUP 3) EQU 4) ENDs.
Explain the following assembler directives. 1) DB 2) DUP 3) EQU 4) ENDs.
Last answer:
1) DB (Define Byte or Data Byte): This is used to define a byte type variable. The range of values : 0 - 255 for unsigned numbers -128 to 127 for signed numbers This can be used ... the end of the segment The directives SEGMENT, ENDS are always enclosed in data, code, stack and extra segments.
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
6
views
1
answer
asked
Jan 6
by
anonymous
Write an algorithm and draw the flowchart to find sum of series of numbers.
Write an algorithm and draw the flowchart to find sum of series of numbers.
Last answer:
Algorithim to find sum of series of numbers: 1. Initialize data segment 2. Initialize byte counter and memory pointer to read number from array. 3. Initialize sum variable to 0 4. sum=sum+number from array ... Decrement byte counter 9. If byte counter=0 then step 10 else step 4 10. Stop
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
4
views
1
answer
asked
Jan 6
by
anonymous
Write an algorithm to subtract two 16 bit numbers (With borrow) in 8086 microprocessor.
Write an algorithm to subtract two 16 bit numbers (With borrow) in 8086 microprocessor.
Last answer:
Algorithm for 16 bit numbers subtraction with borrow: 1. Load 0000H into CX register (for borrow) 2. Load the first number into AX(accumulator) 3. Load the second number into BX register 4. Subtract ... . Move data from AX(accumulator) to memory 8. Move data from CX register to memory 9. Stop
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
3
views
1
answer
asked
Jan 6
by
anonymous
Enlist any four addressing modes of 8086 microprocessor.
Enlist any four addressing modes of 8086 microprocessor.
Last answer:
Addressing modes of 8086 : 1. Immediate 2. Direct 3. Register 4. Register indirect 5. Indexed 6. Register relative 7. Based indexed 8. Relative based indexed 9. Implied
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
4
views
1
answer
asked
Jan 6
by
anonymous
State the use of OF and DF flags of 8086 microprocessor.
State the use of OF and DF flags of 8086 microprocessor.
Last answer:
Overflow Flag: This flag is set if an overflow occurs, i.e. if the result of a signed operation is large enough to be accommodated in destination register. Direction Flag: It selects either increment or decrement mode for DI &/or SI register during string instructions.
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
3
views
1
answer
asked
Jan 6
by
anonymous
Define pipelining.
Define pipelining.
Last answer:
Pipelining: Process of fetching the next instruction while the current instruction is executing is called pipelining which will reduce the execution time.
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
3
views
1
answer
asked
Jan 6
by
anonymous
State the functions of following pins of 8085 1) SOD 2) HLDA
State the functions of following pins of 8085 1) SOD 2) HLDA
Last answer:
1) SOD: Serial Output data SOD pin is used to transmit data serially from accumulator to the external devices connected to the pin. 2) HLDA: Microprocessor generates HLDA signal to acknowledge requesting device after HOLD signal.
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
4
views
1
answer
asked
Jan 6
by
anonymous
State the functions of temporary registers of 8085 microprocessor.
State the functions of temporary registers of 8085 microprocessor.
Last answer:
Temp Register (8 bits) is also called as operand register as it is used by μp for storing one of the operands during an operation and also for storing the result of any execution temproary.
microprocessor
and
programming
thumb_up_alt
0
like
thumb_down_alt
0
dislike
5
views
1
answer
asked
Jul 31, 2019
by
anonymous
Describe the functions of General purpose registers of 8086 microprocessor.
Describe the functions of General purpose registers of 8086 microprocessor.
Last answer:
(i) General Purpose Registers of 8086 1. AX (Accumulator) - Used to store the result for arithmetic / logical operations All I/O data transfer using IN & OUT instructions use A ... Index - acts as the destination for string movement instructions Used to hold offset address of Extra segment.
functions
general
purpose
registers
8086
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
97
views
1
answer
asked
Jul 31, 2019
by
anonymous
List any four salient features of 8085 microprocessor
List any four salient features of 8085 microprocessor
Last answer:
Features of 8085: 1. 16 address line so 216=64 Kbytes of memory can be addressed. 2. Operating clock frequency is 3MHz and minimum clock frequency is 500 KHz. 3. On chip bus controller ... duty cycle TTL clock 10. Provide 2 serial I/O lines, so peripheral can be interfaced with 8085 μp
salient
features
8085
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
109
views
1
answer
asked
Sep 28, 2018
by
anonymous
The 16 bit flag of 8086 microprocessor is responsible to indicate ___________
The 16 bit flag of 8086 microprocessor is responsible to indicate ___________ A. the condition of result of ALU operation B. the condition of memory C. the result of addition D. the result of subtraction
Last answer:
The 16 bit flag of 8086 microprocessor is responsible to indicate the condition of result of ALU operation
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
3.2k
views
1
answer
asked
Sep 28, 2018
by
anonymous
The work of EU is ________ A. encoding B. decoding C. processing D. calculations
The work of EU is ________ A. encoding B. decoding C. processing D. calculations
Last answer:
The work of EU is decoding
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
388
views
1
answer
asked
Sep 28, 2018
by
anonymous
In 8086 microprocessor , the address bus is ________ bit wide A. 12 bit B. 10 bit C. 16 bit D. 20 bit
In 8086 microprocessor , the address bus is ________ bit wide A. 12 bit B. 10 bit C. 16 bit D. 20 bit
Last answer:
In 8086 microprocessor, the address bus is 20 bit
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
610
views
1
answer
asked
Sep 28, 2018
by
anonymous
The microprocessor can read/write 16 bit data from or to ________ A. memory B. I /O device C. processor D. register
The microprocessor can read/write 16 bit data from or to ________ A. memory B. I /O device C. processor D. register
Last answer:
The microprocessor can read/write 16 bit data from or to memory
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
2.1k
views
1
answer
asked
Sep 28, 2018
by
anonymous
The intel 8086 microprocessor is a _______ processor A. 8 bit B. 16 bit C. 32 bit D. 4 bit
The intel 8086 microprocessor is a _______ processor A. 8 bit B. 16 bit C. 32 bit D. 4 bit
Last answer:
The intel 8086 microprocessor is a 16 bit processor
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
157
views
1
answer
asked
Sep 28, 2018
by
anonymous
The purpose of the microprocessor is to control ______
The purpose of the microprocessor is to control ______ A. memory B. switches C. processing D. tasks
Last answer:
The purpose of the microprocessor is to control memory
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
1.4k
views
1
answer
asked
Sep 28, 2018
by
anonymous
Microprocessor is the ______ of the computer and it perform all the computational tasks
Microprocessor is the ______ of the computer and it perform all the computational tasks A. main B. heart C. important D. simple
Last answer:
Microprocessor is the heart of the computer and it performs all the computational tasks
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
226
views
1
answer
asked
Sep 28, 2018
by
anonymous
Microprocessor is a/an _______ circuit that functions as the CPU of the compute
Microprocessor is a/an _______ circuit that functions as the CPU of the compute A. electronic B. mechanic C. integrating D. processing
Last answer:
Microprocessor is a/an electronic circuit that functions as the CPU of the compute
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
162
views
1
answer
asked
Sep 28, 2018
by
anonymous
A microprocessor is a _______ chip integrating all the functions of a CPU of a computer.
A microprocessor is a _______ chip integrating all the functions of a CPU of a computer. A. multiple B. single C. double D. triple
Last answer:
A microprocessor is a single chip integrating all the functions of a CPU of a computer.
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
473
views
1
answer
asked
Sep 5, 2018
by
anonymous
Draw block diagram of microprocessor and state the function of each block.
Draw block diagram of microprocessor and state the function of each block.
Last answer:
Registers: The 8085 includes six registers, one accumulator, and one flag register, as shown in Figure. In addition, it has two 16-bit registers: the stack pointer and the program counter. The 8085 ... , Subtraction, Increment, Decrement etc. Logic Operations: AND, OR, X-OR, Complement etc.
microprocessor
state
function
thumb_up_alt
0
like
thumb_down_alt
0
dislike
333
views
1
answer
asked
Jun 18, 2018
by
anonymous
The 8085 Microprocessor has
The 8085 Microprocessor has A) 8-bits Data bus and 16-bits Address bus B) 8-bits Data bus and 8-bits Address bus C) 16-bits Data bus and 16-bits Address bus D) 32-bits Data bus and 8-bits Address bus
Last answer:
B) 8-bits Data bus and 8-bits Address bus.
8085
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
175
views
2
answers
asked
Jun 18, 2018
by
anonymous
In a 16-bit microprocessor, a single word is
In a 16-bit microprocessor, a single word is A) 16 bit data B) 32 bit data C) 8 bit data D) 64 bit data
Last answer:
In a 16-bit microprocessor, a single word is 16 bit data
16-bit
microprocessor
single
word
thumb_up_alt
0
like
thumb_down_alt
0
dislike
124
views
1
answer
asked
Jun 18, 2018
by
anonymous
In the 8085A Microprocessor, arithmetic and logical operations are performed through which of the following?
In the 8085A Microprocessor, arithmetic and logical operations are performed through which of the following? A) Stack B) ALU C) I/O D) Register
Last answer:
In the 8085A Microprocessor, arithmetic and logical operations are performed through which of the following? A) Stack B) ALU C) I/O D) Register
8085a
microprocessor
arithmetic
logical
operations
performed
thumb_up_alt
0
like
thumb_down_alt
0
dislike
133
views
1
answer
asked
Jun 18, 2018
by
anonymous
The clock frequency of an 8085 microprocessor based system is 3 MHz. What should be the minimum pulse
The clock frequency of an 8085 microprocessor based system is 3 MHz. What should be the minimum pulse width of the INTR signal so that it is recognized successfully? A) 5.6 µs B) 5.7 µs C) 5.8 µs D) 5.9 µs
Last answer:
The clock frequency of an 8085 microprocessor based system is 3 MHz. What should be the minimum pulse width of the INTR signal so that it is recognized successfully? A) 5.6 µs B) 5.7 µs C) 5.8 µs D) 5.9 µs
clock
frequency
8085
microprocessor
system
minimum
pulse
width
intr
signal
thumb_up_alt
0
like
thumb_down_alt
0
dislike
518
views
1
answer
asked
Jun 18, 2018
by
anonymous
In 8085 microprocessor, how many T-states does OPCODE FETCH machine cycle normally require
In 8085 microprocessor, how many T-states does OPCODE FETCH machine cycle normally require (i.e., when HOLD and WAIT signals are NOT forced)? A) 4 to 6 B) 3 to 8 C) 2 to 3 D) 8 to 12
Last answer:
In 8085 microprocessor, how many T-states does OPCODE FETCH machine cycle normally require (i.e., when HOLD and WAIT signals are NOT forced)? A) 4 to 6 B) 3 to 8 C) 2 to 3 D) 8 to 12
8085
microprocessor
t-states
opcode
fetch
machine
cycle
thumb_up_alt
0
like
thumb_down_alt
0
dislike
115
views
1
answer
asked
Jun 18, 2018
by
anonymous
Then number of T-states of the instruction STA in 8085 microprocessor is
Then number of T-states of the instruction STA in 8085 microprocessor is A) 10 B) 12 C) 13 D) 16
Last answer:
Then number of T-states of the instruction STA in 8085 microprocessor is 13
number
t-states
instruction
sta
8085
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
111
views
1
answer
asked
Jun 18, 2018
by
anonymous
What is the Power Supply specification for 8085AH microprocessor?
What is the Power Supply specification for 8085AH microprocessor? A) Single +5V supply with 10% voltage margins B) Dual +5V supply with 10% voltage margins C) Single +10V supply with 5% voltage margins D) Dual +5V supply with 5% voltage margins
Last answer:
What is the Power Supply specification for 8085AH microprocessor? A) Single +5V supply with 10% voltage margins B) Dual +5V supply with 10% voltage margins C) Single +10V supply with 5% voltage margins D) Dual +5V supply with 5% voltage margins
power
supply
specification
8085ah
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
229
views
1
answer
asked
Jun 18, 2018
by
anonymous
What is the size of memory which can be accessed by direct accessing in 8085 microprocessor?
What is the size of memory which can be accessed by direct accessing in 8085 microprocessor? A) 64 kB B) 4 kB C) 128 kB D) 128 MB
Last answer:
What is the size of memory which can be accessed by direct accessing in 8085 microprocessor? A) 64 kB B) 4 kB C) 128 kB D) 128 MB
size
memory
8085
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
112
views
1
answer
asked
Jun 18, 2018
by
anonymous
What is the size of SP register in 8085 microprocessor?
What is the size of SP register in 8085 microprocessor? A) 16 bits B) 8 bits C) 64 bits D) 48 bits
Last answer:
What is the size of SP register in 8085 microprocessor? A) 16 bits B) 8 bits C) 64 bits D) 48 bits
sp
register
8085
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
105
views
1
answer
asked
Apr 28, 2018
by
anonymous
Which of the following instructions is not available in 8085 microprocessor?
Which of the following instructions is not available in 8085 microprocessor? (A) LDA 3850 (B) XTHL (C) push PSW (D) LDAXH
Last answer:
Which of the following instructions is not available in 8085 microprocessor? (A) LDA 3850 (B) XTHL (C) push PSW (D) LDAXH
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
99
views
1
answer
asked
Apr 28, 2018
by
anonymous
The ALE line of an 8085 microprocessor is used to
The ALE line of an 8085 microprocessor is used to (A) latch the output of an I/O instruction into an external latch. (B) deactivate the chip-select signal from memory devices. (C) find the interrupt enable states of the TRAP interrupt. (D) latch the 8 bits of address lines AD7-AD0 into an external latch.
Last answer:
The ALE line of an 8085 microprocessor is used to latch the 8 bits of address lines AD7-AD0 into an external latch.
ale
line
8085
microprocessor
used
thumb_up_alt
0
like
thumb_down_alt
0
dislike
113
views
1
answer
asked
Mar 15, 2018
by
anonymous
Is Arduino microcontroller or microprocessor?
Is Arduino microcontroller or microprocessor?
arduino
microcontroller
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
48
views
0
answers
asked
Mar 11, 2018
by
anonymous
What is the difference between a microcontroller and a microprocessor?
What is the difference between a microcontroller and a microprocessor?
Last answer:
Compare microprocessor and microcontroller Microprocessor Microcontroller 1)Inbuilt RAM and ROM 1)Do not have inbuilt RAM or ROM 2)Inbuilt timer 2)Doesn't have inbuilt timer ... same memory 6)Many Multifunction pins on the IC 6)less multifunction Pins on IC.
difference
between
microcontroller
microprocessor
thumb_up_alt
0
like
thumb_down_alt
0
dislike
201
views
1
answer
To see more, click for the
full list of questions
or
popular tags
.
Install Now
Recent Questions
Subscribe
...