Answer Posted / shabir gojree lpu, jalandhar
The segment register in the 80806/8088 microprocessor
contains the base address (divided by 16) of a region of
memory. Since the register is 16 bits in size, there are
65,536 possible segment base addresses, ranging from 00000H
to FFFF0H, in increments of 00010H.
After address translation at the instruction level, the
generated 16 bit offset is added to the selected segment
register times 16 to generate a physical address between
00000H and FFFFFH. (If the offset and base go past FFFFFH,
they wrap around back to 00000H.) Since the offset is also
16 bits in size, and since the overlap is only 4 bits
(times 16), then each 64 kb segment overlaps by 16 bytes.
There are four segment registers; CS, DS, ES, and SS,
standing for Code Segment, Data Segment, Extra Segment, and
Stack Segment.
CS is used for opcode fetches. DS is used for normal data.
ES is used for certain string operations as the destination
address. SS is used for stack and frame (BP) data.
The segment registers can be implicitly selected by
context, or they can be explicitly selected with a segment
prefix opcode.
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
What’s a microprocessor?
State the two type of 16 bit registers and define them?
Describe the general purpose registers of 8085?
Differentiate between div and idiv instructions with the help of examples.
With 12 mhz clock frequency how many instructions (of 1 machine cycle and 2 machine cycle) it can execute per second?
When is the LOCK prefix used often?
write the assembly language programming to find the 2's complement for a string of 100 bytes
Name the special purpose registers?
How many hardware interrupts 8085 supports?
Mention any one 32 bit microcontroller and explain the same.
What is meant by priority of interrupt?
What is the purpose of the sign flag in 8085?
What is the maximum clock frequency used by the 8085 microprocessor?
Can you tell how many pins are there in 8085 Microprocessor?
Other than setb, clr are there any single bit instructions?