Sunteți pe pagina 1din 41

EM.ES.

3 Microprocessors & ‫مختبر المعالجات والسيطرات‬ 3


Microcontrollers Lab.
‫الدقيقة‬

Experiment no. (1)


Block Diagram of Intel 8086

The 8086 CPU is divided into two independent functional units:


1. Bus Interface Unit (BIU)
2. Execution Unit (EU)

Fig. 1: Block Diagram of Intel 8086


Features of 8086 Microprocessor:
1. Intel 8086 was launched in 1978.
2. It was the first 16-bit microprocessor.
3. This microprocessor had major improvement over the execution speed of
8085.
4. It is available as 40-pin Dual-Inline-Package (DIP).
5. It is available in three versions:
a. 8086 (5 MHz)
b. 8086-2 (8 MHz)
c. 8086-1 (10 MHz)
6. It consists of 29,000 transistors.

Bus Interface Unit (BIU)

The function of BIU is to:


· Fetch the instruction or data from memory.
· Write the data to memory.
· Write the data to the port.
· Read data from the port.

Instruction Queue

1. To increase the execution speed, BIU fetches as many as six instruction


bytes ahead to time from memory.
2. All six bytes are then held in first in first out 6 byte register called
instruction queue.
3. Then all bytes have to be given to EU one by one.
4. This pre fetching operation of BIU may be in parallel with execution
operation of
EU, which improves the speed execution of the instruction.
Execution Unit (EU)
The functions of execution unit are:
· To tell BIU where to fetch the instructions or data from.
· To decode the instructions.
· To execute the instructions.
The EU contains the control circuitry to perform various internal
operations. A decoder in EU decodes the instruction fetched memory to
generate different internal or external control signals required to perform
the operation. EU has 16-bit ALU, which can perform arithmetic and
logical operations on 8-bit as well as 16-bit.
General Purpose Registers of 8086
These registers can be used as 8-bit registers individually or can be used
as 16-bit in pair to have AX, BX, CX, and DX.
1. AX
Register:
AX register is also known as accumulator register that stores operands for
arithmetic operation like divided, rotate.
2. BX
Register:
This register is mainly used as a base register. It holds the starting base
location of a memory region within a data segment.
3. CX
Register:
It is defined as a counter. It is primarily used in loop instruction to store
loop counter.
4. DX
Register:
DX register is used to contain I/O port address for I/O
instruction.
Segment Registers
Additional registers called segment registers generate memory
address when combined with other in
5. the microprocessor. In 8086 microprocessor, memory is divided into 4
segments as follow:
Fig. 2: Memory Segments of 8086

1. Code Segment (CS):


The CS register is used for addressing a memory location in the Code
Segment of the memory, where the executable program is stored.
2. Data Segment (DS):
The DS contains most data used by program. Data are accessed in the
Data Segment by an offset address or the content of other register that holds
the offset address
3. Stack Segment (SS):
SS defined the area of memory used for the stack.
4. Extra Segment (ES):
ES is additional data segment that is used by some of the string to hold the
destination data.
Flag Registers of 8086
5. Flag register in EU is of 16-bit and is shown in fig. 3:
Flags Register determines the current state of the processor. They are
modified automatically by CPU after mathematical operations, this allows
to determine the type of the result, and to determine conditions to transfer
control to other parts of the program. 8086 has 9 flags and they are divided
into two categories:
1. Conditional Flags
2. Control Flags
Conditional Flags
Conditional flags represent result of last arithmetic or logical
instruction executed. Conditional flags are as follows:
· Carry Flag (CF): This flag indicates an overflow condition for
unsigned integer arithmetic. It is also used in multiple-precision arithmetic.
· Auxiliary Flag (AF): If an operation performed in ALU generates a
carry/barrow from lower nibble (i.e. D0 – D3) to upper nibble (i.e. D4 –
D7), the AF flag is set i.e. carry given by D3 bit to D4 is AF flag. This is
not a general-purpose flag, it is used internally by the processor to perform
Binary to BCD conversion.
· Parity Flag (PF): This flag is used to indicate the parity of result. If
lower order
8-bits of the result contains even number of 1’s, the Parity Flag is set
and for odd number of 1’s, the Parity Flag is reset.
· Zero Flag (ZF): It is set; if the result of arithmetic or logical operation
is zero else it is reset.
· Sign Flag (SF): In sign magnitude format the sign of number is
indicated by MSB
bit. If the result of operation is negative, sign flag is set.
· Overflow Flag (OF): It occurs when signed numbers are added or
subtracted. An
OF indicates that the result has exceeded the capacity of machine.
Control Flags
Control flags are set or reset deliberately to control the operations of
the execution unit. Control flags are as follows:
1. Trap Flag (TP):
a. It is used for single step control.
b. It allows user to execute one instruction of a program at a time for
debugging.
c. When trap flag is set, program can be run in single step mode.
2. Interrupt Flag (IF):
a. It is an interrupt enable/disable flag.
b. If it is set, the maskable interrupt of 8086 is enabled and if it is reset, the
interrupt is disabled.
c. It can be set by executing instruction sit and can be cleared by
executing CLI instruction.
3. Direction Flag (DF):
a. It is used in string operation.
b. If it is set, string bytes are accessed from higher memory address to
lower memory address.
c. When it is reset, the string bytes are accessed from lower memory
address to higher memory address.

Experiment no. (2)


8086 Instruction Set and its Classification

The instructions of 8086 are classified into SIX groups. They are:
1. DATA TRANSFER INSTRUCTIONS
2. ARITHMETIC INSTRUCTIONS
3. BIT MANIPULATION INSTRUCTIONS
4. STRING INSTRUCTIONS
5. PROGRAM EXECUTION TRANSFER INSTRUCTIONS
6. PROCESS CONTROL INSTRUCTIONS

1.DATA TRANSFER INSTRUCTIONS


The DATA TRANSFER INSTRUCTIONS are those, which transfers the
DATA from any one source to any one destination.The datas may be of
any type. They are again classified into four groups.They are:

2.ARITHMETIC INSTRUCTIONS
These instructions are those which are useful to perform Arithmetic
calculations, such as addition, subtraction, multiplication and
division.They are again classified into four groups.They are:
3.BIT MANIPULATION INSTRUCTIONS
These instructions are used to perform Bit wise operations.

4. STRING INSTRUCTIONS
The string instructions function easily on blocks of memory.They are
user friendly instructions, which help for easy program writing and
execution. They can speed up the manipulating code.They are useful in
array handling, tables and records.

5.PROGRAM EXECUTION TRANSFER INSTRUCTIONS


These instructions transfer the program control from one address to
other address. ( Not in a sequence). They are again classified into four
groups.They are:
6. PROCESS CONTROL INSTRUCTIONS
These instructions are used to change the process of the Microprocessor.
They change the process with the stored information. They are
again classified into Two groups.They are:
EXTERNAL HARDWARE FLAG SET /
SYNCHRONIZATION CLEAR INSTRUCTIONS
INSTRUCTIONS
HLT STC
WAIT CLC
ESC CMC
LOCK STD
NOP CLD
STI
CLI
Experiment no. (3)

Microsoft Macro Assembler

The Microsoft Macro Assembler (MASM) is an x86 assembler that uses


the Intel syntax for MS-DOS and Microsoft Windows. Beginning with
MASM 8.0 there are two versions of the assembler - one for 16-bit and
32-bit assembly sources, and another (ML64) for 64-bit sources only.
MASM is maintained by Microsoft, but since version 6.12 has not been
sold as a separate product, it is instead supplied with various Microsoft
SDKs and C compilers. Recent versions of MASM are included with
Microsoft Visual Studio.

History
The earliest versions of MASM date back to 1981.
Up to version 5.0, MASM was available as an MS-DOS application only.
Versions 5.1 and 6.0 were available as both MS-DOS and OS/2
applications.
Version 6.0, released in 1992, added high-level programming support
and a more C-like syntax. By the end of the year, version 6.1A updated
the memory management to be compatible with code produced by Visual
C++. In 1993 full support for 32-bit applications and the Pentium
instruction set was added. The MASM binary at that time was shipped
as a "bi-modal" DOS-extended binary (using the Phar Lap TNT DOS
extender).
Versions 6.12 to 6.14 were implemented as patches for version 6.11. These
patches changed the type of the binary to native PE format; version 6.11 is
the last version of MASM that will run under MS-DOS.
By the end of 1997 MASM fully supported Windows 95 and
included some
AMD-specific
instructions.
In 1999 Intel released macros for SIMD and MMX instructions, which
were shortly after supported natively by MASM. With the 6.15 release in
2000, Microsoft discontinued support for MASM as a separate product,
instead subsuming it into the Visual Studio toolset. Though it was still
compatible with Windows 98, current versions of Visual Studio were not.
Support for 64-bit processors was not added until the release of Visual
Studio 2005, with MASM 8.0.

Object module formats supported by MASM


Early versions of MASM generated object modules using the OMF
format, which was used to create binaries for MS-DOS or OS/2.
Since version 6.1, MASM is able to produce object modules in the
Portable Executable (PE/COFF) format. PE/COFF is compatible with
recent Microsoft C compilers, and object modules produced by either
MASM or the C compiler can be routinely intermixed and linked into
Win32 and Win64 binaries.
Some third-party tools that support MASM

IDEs
• RadASM
• WinAsm Studio
• EasyCode
• Visual Studio

Debuggers
• OllyDbg

Disassemblers
• IDAPro the Interactive Disassembler

Assemblers compatible with MASM


Some other assemblers can assemble most code written for
MASM, with the exception of more complex macros.
� Turbo Assembler(TASM) developed by Borland, later owned by
Embarcadero, last updated in 2002 and supplied with Delphi and
C++Builder for several years, later discontinued.
� JWASMMacro Assembler, licenced under the Sybase Open Watcom
EULA.
� Pelle's Macro Assembler, a component of the Pelles C development
environment.

Experiment no. (4)


HOW TO USE MASM SOFTWARE

Step 1: Write a program in Notepad


Step 2: Save program as .asm. e.g. There is a program of addition, First write in
Notepad then click on save as and save the program as addition.asm.
Step 3: Run the MASM file. Means double click on the MASM file, It will open
a window. Then type FILE NAME.asm (addition.asm)
<CR>
<CR>
<CR>
<CR>
Step 4: It will create OBJECT File automatically. ( Means addition.obj )
Step 5: Run the LINK File. Means double click on the LINK file, It will open a
window. Then type FILE NAME.obj (addition.obj)
<CR>
<CR>
<CR>
<CR>
Step 6: It will create EXE File automatically. ( Means addition.exe )
Step 7: Open DOS prompt
Step 8: Type folder link
Means cd masm, it will show C:\ masm>
Step 9: Type debug FILE NAME.exe <CR> ( means debug addition.exe <CR> )
Step 10: _ will come on screen. Type G (GO COMMAND ) for execution
Step 11: The result of program will come on screen.
Step 12: Type q for quit from command prompt
Experiment no. (5)
SOME BASIC COMMANDS

ASSEMBLE A [ADDRESS]
COMPARE C RANGE ADDRESS
DUMP D [RANGE]
ENTER E ADDRESS [LIST]
FILL F RANGE LIST
GO G [=ADDRESS] [ADDRESSES]
HEX H VALUE 1 VALUE 2
INPUT I PORT
LOAD L [ADDRESS] [DRIVE] [FIRSTSECTOR] [NUMBER]
MOVE M RANGE ADDRESS
NAME N [PATHNAME] [ARGLIST]
OUTPUT O PORT TYPE
PROCEED P [=ADDRESS] [NUMBER]
QUIT Q
REGISTER R [REGISTER]
SEARCH S RANGE LIST
TRACE T [=ADDRESS] [VALUE]
UNASSEMBLE U [RANGE]
WRITE W [ADDRESS] [DRIVE] [FIRSTSECTOR] [NUMBER]
6(i). Aim: To perform (i) addition and (ii) subtraction of two 8 bit numbers using
8086 microprocessor and get the result in
hexadecimal. Apparatus Used: MASM
SOFTWARE.
Program:
DATA SEGMENT
NUM DW 00h
DATA ENDS
CODE SEGMENT
ASSUME DS:DATA, CS:CODE
START: MOVAX,DATA
MOV DS,AX
MOV AX,10H
ADD AX, 10H
MOV NUM,AX
INT 03H
CODE ENDS
END START
END

6(ii). Aim: To perform (i) addition and (ii) subtraction of two 8 bit numbers using
8086 microprocessor and get the result in
hexadecimal. Apparatus Used: MASM
SOFTWARE.
Program:
DATA SEGMENT
NUM DW 00h
DATA ENDS
CODE SEGMENT
ASSUME DS:DATA, CS:CODE
START: MOV
AX,DATA MOV
DS,AX
MOV AX, 33H
SUB AX, 11H
MOV NUM, AX
INT 03H
CODE ENDS
END START
END
7(i). Aim: To perform (i) addition and (ii) subtraction of two 16 bit
numbers using 8086 microprocessor and get the result in hexadecimal.
Apparatus Used: MASM
SOFTWARE. Program:
DATA SEGMENT
NUM1 DW 1111H
NUM2 DW 2222H
RESULT DW 00
DATA ENDS
CODE SEGMENT
ASSUME CS: CODE, DS: DATA
START:
MOV AX, DATA
MOV DS, AX
MOV AX, 00H
MOV AX, NUM1
ADD AX, NUM2
MOV RESULT, AX
INT 03H
CODE ENDS
END START
END
7(ii). Aim: To perform (i) addition and (ii) subtraction of two 16 bits
numbers using 8085 microprocessor and get the result in hexadecimal.
Apparatus Used: MASM
SOFTWARE. Program:
DATA
SEGME
NT
NUM1 DW 5555H
NUM2 DW 2222H
RESULT DW 00
DATA ENDS
CODE SEGMENT
ASSUME CS: CODE, DS: DATA
START:
MOV AX, DATA
MOV DS, AX
MOV AX, 00H
MOV AX, NUM1
SUB AX, NUM2
MOV RESULT, AX
INT 03H
CODE ENDS
END START
END
8086 using numbers Bit 8. Aim: To perform multiplication of two 8s
microprocessor and get the result in hexadecimal.
Apparatus Used: MASM SOFTWARE.
Program:
MAIN SEGMENT

NUM1 DB 02
NUM2 DB 05
REST1 DB 00
REST2 DB 00
MAIN ENDS
MAT SEGMENT
START: MOV AX, MAIN
MOV DS, AX
MOV AX, 00
MOV AL, NUM1
MOV BL, NUM2
MUL BL
MOV REST1,
AL MOV
RSET2, AH
INT 03H
MAT ENDS
END START
END
Experiment no. (6)
1.1 Introduction
The first 50 years of the 20th century witnessed the invention of the
internal combustion engine, which greatly extended the physical strength of
the human body.
In the second half of the century, the birth of the microprocessor
further extended our mental capabilities. Applications of this amazing
product in various industries have introduced so much impact on our lives,
hence, it is called the second industrial Revolution.Microcomputers
represent a total change in designing systems. Both industrial and academic
institutions are active in the development and search for new applications for
microcomputers.
This book is designed to be used in conjunction with the "multi tech"
MDA-Win8086 Microcomputers as part of a one-year laboratory class on
microcomputers. With the aid of this book, students will be able to learn the
fundamentals of microcomputers, from basic CPU instructions to practical
applications.
The first part of this book is an introduction to the basic concepts of
microcomputer programming. It lays the foundation for year studies, the
second part of this book is the microcomputer hardware, such as ,
input/output, interrupt, timer and counter experiment, and experiments using
microcomputer instructions, such as, data transfers, arithmetic and logic
operations, jump and subroutine and memory address allocation in simple
program. Experiments involving more complicated arithmetic operations,
such as, binary to decimal conversion, decimal to binary conversion,
multiplication, division are presented.
There are various experiments in this book which are designed to
familiarize the student with the fundamentals of input/output programming.
These programs are centered around the keyboard and display. These
experiments establish the foundation for later experiments involving a
simple monitor program, which leads to more complicated MDA-Win8086
programs.

1.2 MDA-Win8086 SYSTEM CONFIGURATION


FIGURE 1. MDA-Win8086 SYSTEM CONFIGURATION

1.3. MDA-Win8086 SYSTEM CONFIGURATION


☞ The function of IC's at Figure 1.
① CPU(Central processing unit) : Using Intel 8086, Using 14.7456㎒.
② ROM(Read Only Memory) : It has program to control user's key input,
LCD display, user's program. 64K Byte, it has data communication program.
Range of ROM Address is F0000H~FFFFFH.
③ SRAM(Static Random Access Memory) : Input user's program & data.
Address of memory is 00000H~0FFFFH, totally 64K Byte.
④ DISPLAY : Text LCD Module, 16(Characters)×2(Lines)
⑤ KEYBOARD : It is used to input machine language.
There are 16 hexadecimal keys and 8 function keys.
⑥ SPEAKER : Sound test.
⑦ RS-232C : Serial communication with IBM compatible PC
⑧ DOT MATRIX LED : To understand & test the dot matrix structure and
principle of display. It is interfaced to 8255A(PPI).
⑨ A/D CONVERTER : ADC0804 to convert the analog signal to digital
signal.
⑩ D/A CONVERTER : DAC0800 (8-bits D/A converter) to convert the
digital signal to the analog signal and to control the level meter.
⑪ STEPPING MOTOR INTERFACE : Stepping motor driver circuit is
designed.
⑫ POWER : AC 110~220V, DC +5V 3A, +12V 1A, -12V 0.5A SMPS.
1.4 MDA-Win8086 ADDRESS MAP
① Memory map

② I/O address map

ADDRESS I/O PORT DESCRIPTION

00H ~ 07H LCD & LCD Display

KEYBOARD 00H : INSTRUCTION REGISTER

02H : STATUS REGISTER

04H : DATA REGISTER

KEYBOARD

01H : KEYBOARD REGISTER (Only read)

01H : KEYBOARD FLAG (Only write)

08H ~ 0FH 8251 / 8253 8251(Using to data communication)

08H : DATA REGISTER


0AH : INSTRUCTION / STATUS REGISTER

8253(TIMER/COUNTER)

09H : TIMER 0 REGISTER

0BH : TIMER 1 REGISTER

0DH : TIMER 2 REGISTER E


0FH : CONTROL REGISTER xp
10H ~ 17H 8259/SPEAKER 8259(Interrupt controller) er
10H : COMMAND REGISTER im
12H : DATA REGISTER
en
t
SPEAKER 11H : SPEAKER
no
18H ~ 1FH 8255A-CS1/ 8255A-CS1(DOT & ADC INTERFACE)
.
8255A-CS2 18H : A PORT DATA REGISTER (7
1AH : B PORT DATA REGISTER )
1CH : C PORT CONTROL REGISTER
7.
8255-CS2(LED & STEPPING MOTOR)
OP
19H : A PORT DATA REGISTER
ER
1BH : B PORT DATA REGISTER
AT
1DH : C PORT CONTROL REGISTER
IO
1FH : CONTROL REGISTER
N
20H ~ 2FH I/O EXTEND CONNECTOR
IN
30H ~ FFH USER'S RANGE
TR
ODUCTION
7‐1. FUNCTION OF KEYS
MDA-Win8086 has high performance 64K-byte monitor program. It
is designed for easy function. After power is on , the monitor program
begins to work. In addition to all the key function the monitor has a memory
checking routine.
The following is a simple description of the key functions.
2‐2. BASIC OPERATION
On a power-up, following message will be displayed on a LCD.

To select the Machine Code and Serial monitor mode with P1 switch.

# RES System Reset Key


Whenever RES is pressed, the display becomes FIGURE 1-1 or FIGURE
1-2.

# AD , : HEXA-DIGIT KEY : Substitute to segment & offset , address


EXAMPLE 1 ) Check the contents in memory
AD , + , -

KEY : Increment and decrement to segment & offset address.


When the power is on or press the RES key, following message will be
displayed on LCD.
When the AD key is pressed,
※ AD , : ,
HEXA-DIGIT KEY : Update to memory contents.

EXAMPLE 2 ) Let's store the following like to 01000H ~ 01003H


contents.
< ADDRESS DATA>
01000 AB
01001 CD
01002 EF
01003 34

Solution
※ REG , + , - KEY : Display to register contents.
8. Microprocessor Lab Viva Questions with Answers

1.What is a Microprocessor?
Microprocessor is a CPU fabricated on a single chip, program-controlled device,
which fetches the instructions from memory, decodes and executes the instructions.

2. What is Instruction Set?


It is the set of the instructions that the Microprocessor can execute.

3. What is Bandwidth ?
The number of bits processed by the processor in a single instruction.

4. What is Clock Speed ?


Clock speed is measured in the MHz and it determines that how many instructions a
processor can processed. The speed of the microprocessor is measured in the MHz or
GHz.

5. What are the features of Intel 8086 ?


Features:
� Released by Intel in 1978
� Produced from 1978 to 1990s
� A 16-bit microprocessor chip.
� Max. CPU clock rate:5 MHz to 10 MHz
� Instruction set: x86-16
� Package: 40 pin DIP
� 16-bit Arithmetic Logic Unit
� 16-bit data bus (8088 has 8-bit data bus)
� 20-bit address bus - 220 = 1,048,576 = 1 meg
� The address refers to a byte in memory.
� In the 8088, these bytes come in on the 8-bit data bus. In the 8086, bytes at even
addresses come in on the low half of the data bus (bits 0-7) and bytes at odd
addresses come in on the upper half of the data bus (bits 8-15).
� The 8086 can read a 16-bit word at an even address in one operation and at an
odd address in two operations. The 8088 needs two operations in either case.
� The least significant byte of a word on an 8086 family microprocessor is at the
lower address.

6. What is Logical Address:?


� A memory address on the 8086 consists of two numbers, usually written in
hexadecimal and separated by a colon, representing the segment and the offset. This
combination of segment and offset is referred to as a logical address
� Logical address=segment: offset

7. What is The Effective Address:


� In general, memory accesses take the form of the following example:
� Mov ax, [baseReg + indexReg + constant]
� This example copies a word sized value into the register AX.
� Combined, the three parameters in brackets determine what is called the effective
address, which is simply the offset referenced by the instruction

8. What is Physical Address?


Physical memory address pointed by SEGMENT:OFFSET pair is calculated as:
Physical address = (<Segment Addr> * 10) + <Offset Addr>

9.What are the flags in 8086?


In 8086 Carry flag, Parity flag, Auxiliary carry flag, Zero flag, Overflow flag, Trace
flag, Interrupt flag, Direction flag, and Sign flag.

10.Why crystal is a preferred clock source?


Because of high stability, large Q (Quality Factor) & the frequency that doesn’t drift
with aging. Crystal is used as a clock source most of the times.
11.What is Tri-state logic?
Three Logic Levels are used and they are High, Low, High impedance state. The high
and low are normal logic levels & high impedance state is electrical open circuit
conditions. Tri-state logic has a third line called enable line.

12.What happens when HLT instruction is executed in processor?


The Micro Processor enters into Halt-State and the buses are tri-stated.

13.What is Program counter?


Program counter holds the address of either the first byte of the next instruction to be
fetched for execution or the address of the next byte of a multi byte instruction, which
has not been completely fetched. In both the cases it gets incremented automatically
one by one as the instruction bytes get fetched. Also Program register keeps the
address of the next instruction.

14.What is 1st / 2nd / 3rd / 4th generation processor?


The processor made of PMOS / NMOS / HMOS / HCMOS technology is called 1st /
2nd / 3rd / 4th generation processor, and it is made up of 4 / 8 / 16 / 32 bits.

15.Name the processor lines of two major manufacturers?


High-end: Intel - Pentium (II, III, 4), AMD - Athlon. Low-end: Intel - Celeron, AMD -
Duron. 64-bit: Intel - Itanium 2, AMD - Opteron.

16.How many bit combinations are there in a byte?


Byte contains 8 combinations of bits.

17.Have you studied buses? What types?


There are three types of buses.
Address bus: This is used to carry the Address to the memory to fetch either
Instruction or Data.
Data bus : This is used to carry the Data from the memory.
Control bus : This is used to carry the Control signals like RD/WR, Select etc.

18.What is the Maximum clock frequency in 8086?


5 MHz is the Maximum clock frequency in 8086.

19.What is meant by Maskable interrupts?


An interrupt that can be turned off by the programmer is known as Maskable
interrupt.
20.What is Non-Maskable interrupts?
An interrupt which can be never be turned off (ie. disabled) is known as
Non-Maskable interrupt

21.What are the different functional units in 8086?


Bus Interface Unit and Execution unit, are the two different functional units in 8086.

22.What are the various segment registers in 8086?


Code, Data, Stack, Extra Segment registers in 8086.

23.What does EU do?


Execution Unit receives program instruction codes and data from BIU, executes these
instructions and store the result in general registers.

24.Which Stack is used in 8086? k is used in 8086?


FIFO (First In First Out) stack is used in 8086.In this type of Stack the first stored
information is retrieved first.

25.What are the flags in 8086?


In 8086 Carry flag, Parity flag, Auxiliary carry flag, Zero flag, Overflow flag, Trace
flag, Interrupt flag, Direction flag, and Sign flag.

26.What is SIM and RIM instructions?


SIM is Set Interrupt Mask. Used to mask the hardware interrupts.
RIM is Read Interrupt Mask. Used to check whether the interrupt is Masked or not.

27.What are the different types of Addressing Modes?


A:- There are 12 different types of Addressing Modes.They are:-
1. Immediate:-The Immediate data is a part of instruction, and appears in the form
of successive bytes.
2. Direct:-A 16-bit memory address(offset) is directly specified in the instruction as
a part of it.
3. Register:-Data is stored in a register and it is referred using the particular register
(except IP).
4. Register Indirect:-The address of the memory location which contains data or
operand is determined in an indirect way.
5. Indexed:-offset of the operand is stored in one of the index registers.
6. Register Relative:-The data is available at an effective address formed by adding
an 8-bit or 16-bit displacement with the content of any one of the registers
BX,BP,SI and DI in the default (either DS or ES) segment.
7. Based Indexed:-The effective address of the data is formed,in this addressing
mode,by adding content of a base register to the content of an index register.
8. Relative Based Indexed:- The effective address is formed by adding an 8 or 16-bit
displacement with the sum of contents of any one of the base registers and any one of
the index registers,in the default segment.
9. Intrasegment Direct Mode:-In this mode,the address to which the control is to bve
transferred lies in the segment in which the control transfer instruction lies and appears
directly in the instruction as an immediate displacement value.
10. Intrasegment Indirect Mode:-In this mode,the displacement to which the control is
to be transferred,is in the same segment in which the control transfer instruction
lies,but it is passed to the instruction indirectly.
11. Intersegment Direct:-In this mode,the address to which the control is to be
transferred is in a different segment.
12. Intersegment Indirect:-In this mode,the address to which the control is to be
transferred lies in a different segment and it is passed to the instruction indirectly
sequentially.

28.What are the General Data Registers & their uses?


A:- The Registers AX,BX,CX,DX are the general Purpose 16-bit registers.AX register
as 16-bit accumulator.BX register is used as an offset Storage.CX register is used as
default or implied counter.Dx register is used as an implicit operand or destination in
case of a few instructions.

29.What are Segment Registers & their uses?


A:-There are 4 Segment Registers Code Segment(CS),Data Segment(DS),Extra
Segment(ES) & Stack Segment(SS) registers.CS is used for addressing memor
location in code.DS is used to points the data.ES refers to a segment which is essentially
in another data segment.SS is used fopr addressing stack segment of memory.

30.What are Flag registers?


A:-Divided into 2 parts:-Condition code or status flags and machine control flags.
S-Sign Flag:-Is to set when the result of any computation is negative.
Z-Zero Flag:-Is to set if the result of the computation or comparison performed by the
previous instruction is zero.
C-Carry Flag:-Is set when there is carry out of MSB in case of addition or a borrow in
case of subtraction.
T-Trap Flag:-Is set,the processor enters the single step execution mode.
I-Interrupt Flag:-Is set,the maskable interrupts are recognised by the CPU.
D-Direction Flag:-Is set for auto incrementing or auto decrementing mode in string
manipulation instructions.
AC-Auxiliary Carry Flag:-Is set if there is a carry from the lowest nibble during
addition or borrow for the lowest nibble.
O-Overflow Flag:-Is set if the result of a signed operation is large enough to be
accommodated in a destination register.

31.What does the 8086 Architecture contain?


A:-The complete architecture of 8086 can be divided into 2types :-Bus Interface
Unit(BIU) & Execution Unit.
The BIU contains the circuit for physical address calculations and a precoding
instruction byte queue & it makes the bus signals available for external interfacing of the
devices.
The EU contains the register set of 8086 except segment registers and IP.It has a
16-bit ALU,able to perform arithmetic and Logic operations.

32) What are Data Copy/Transfer Instructions?


A:- Mov
Push Pop Xchg In Out Xlat Lea
Lds/Les Lahf Sahf Pushf Popf

33. What are Machine Control Instructions?


A:- Nop
Hlt Wait Lock

34) What are Flag Manipulation Instructions?


A:- Cld
Std Cli Sti

35) What are String Instructions?


A:- Rep MovSB/MovSW Cmps
Scas Lods Stos

36) What are different parts for 8086 architecture?


A:- The complete architecture of 8086 can be divided into 2types :-Bus Interface
Unit(BIU) & Execution Unit.
The BIU contains the circuit for physical address calculations and a precoding
instruction byte queue & it makes the bus signals available for external interfacing of the
devices.
The EU contains the register set of 8086 except segment registers and IP.It has a
16-bit ALU,able to perform arithmetic and Logic operations.

37.What is an Interrupts
Def:- An interrupt operation suspends execution of a program so that the system can
take special action.The interrupt routine executes and normally returns control to the
interrupted procedure, which then resumes execution.BIOS handles Int 00H-1FH,
whereas DOS handles INT 20H-3FH.

38. What is an Opcode?


A:-The part of the instruction that specifies the operation to be performed is called the
Operation code or Op code.

39.What is an Operand?
A:-The data on which the operation is to be performed is called as an Operand.

40.Explain the difference between a JMP and CALL instruction?


A:-A JMP instruction permantely changes the program counter.
A CALL instruction leaves information on the stack so that the original program
execution sequence can be resumed.

41.What is meant by Polling?


A:- Polling or device Polling is a process which idenfies the device that has
interrupted the microprocessor.

42.What is meant by Interrupt?


A:-Interrupt is an external signal that causes a microprocessor to jump to a specific
subroutine.

43.What is an Instruction?
A:-An instruction is a binary pattern enetered through an input device to command the
microprocessor to perform that specific function.

44.What is Microcontroller and Microcomputer?


A:- Microcontroller is a device that includes microprocessor:memory and I/O signal
lines on a single chip,fabricated using VLSI technology.
Microcomputer is a computer that is designed using microprocessor as its CPU.It
includes microprocessor,memory and I/O.

45.What is Assembler?
A:-The assembler translates the assembly language program text which is given as
input to the assembler to their binary equivalents known as object code.
The time required to translate the assembly code to object code is called access
time.The assembler checks for syntax errors&displays them before giving the object
code.
46.Define Variable?
A:-A Variable is an identifier that is associated with the first byte of data item

47.Explain Dup?
A:-The DUP directive can be used to initialize several location & to assign values to
these locations.

48.Define Pipelining?
A:-In 8086,to speedup the execution program,the instructions fetching and execution
of instructions are overlapped each other.this is known as Pipelining.

49.What is the use of HLDA?


A:-HLDA is the acknowledgment signal for HOLD. It indicates whether the HOLD
signal is received or not.
HOLD and HLDA are used as the control signals for DMA operations.
50. Explain about "LEA"?
A:-LEA(Load Effective Address) is used for initializing a register with an offset
address.
A common use for LEA is to intialize an offset in BX, DI or SI for indexing an
address in memory.
An equivalent operation to LEA is MOV with the OFFSET operator, which generates
slightly shorter machine code.

51. Difference between "Shift" and "Rotate".


A:-Shift and Rotate commands are used to convert a number to another form where
some bits are shifted or rotated.
A rotate instruction is a closed loop instruction.That is,the data moved out at one end is
put back in at the other end.
The shift instruction loses the data that is moved out of the last bit locations.
Basic difference between shift and rotate is shift command makes "fall of " bits at the
end of the register.
Where rotate command makes "wrap around" at the end of the register.

52. Explain about .MODEL SMALL?


A:- .MODEL directive:-This simplified segment directive creates default segments
and the required ASSUME and GROUP statements.
Its format is .MODEL memory-model.The following are the memory models
Tiny:-Code and data in one segment, for .COM programs.
Small:-Code in one segment (<=64K), data in one segment (<=64K). It generates
16-bit offset addresses.
Medium:-Any number of code segments, data in one segment (<=64K).
Compact:-Code in one segment (<=64K), any number of data segments. It generates
32-bit addresses, which require more time for execution.
Large:-Code and data both in any number of segments, no array >64K. Huge:-
Code and data both in any number of segments, arrays may be >64K.
Flat:-Defines one area up to 4 gigabytes for both code and data.It is unsegmented.The
program uses 32-bit addressing and runs under Windows in protected mode.

53.Difference between JMP and JNC?


A:-JMP is Unconditional Branch. JNC is Conditional Branch.

54.List the String Manipulation Commands?


A:-REP=Repeat. MOVS=Move Byte/Word CMPS=Compare Byte/Word SCAS=Scan
Byte/Word LODS=Load byte/Wd to AL/AX STOS=Stor Byte/Wd from AL/

55.What are the 4 Segments? A:-Code Segment Register {CS} Data Segment Register
{DS} Extra Segment Register {ES} Stack Segment Register{SS}

56.What is the main use of ready pin?


A:-READY is used by the microprocessor to check whether a peripheral is ready to
accept or transfer data.
A peripheral may be a LCD display or analog to digital converter or any other.
These peripherals are connected to microprocessor using the READY pin.
If READY is high then the periphery is ready for data transfer. If not the
microprocessor waits until READY goes high.

57.Explain about Direction Flag?


A:-This is used by string manipulation instructions.
If this flag bit is 0 , the string is processed beginning from the lowest to the highest
address,i.e.,.Autoincrement mode.
Otherwise,the string is processed from the highest towards the lowest
address,i.e.,.Autodecrementing mode.

58.What are the basic units of a microprocessor ?


The basic units or blocks of a microprocessor are ALU, an array of
registers and control unit.

59.what is Software and Hardware?


The Software is a set of instructions or commands needed for performing a specific
task by a programmable device or a computing machine.
The Hardware refers to the components or devices used to form computing machine
in which the software can be run and tested. Without software the Hardware is an idle
machine.

60.What is assembly language?


The language in which the mnemonics (short -hand form of instructions) are used to
write a program is called assembly language. The manufacturers of microprocessor give
the mnemonics.

61.What are machine language and assembly language programs?


The software developed using 1's and 0's are called machine language, programs. The
software developed using mnemonics are called assembly language programs.

62. What is the drawback in machine language and assembly language, programs?
The machine language and assembly language programs are machine dependent. The
programs developed using these languages for a particular machine cannot be directly
run on another machine .

63. Define bit, byte and word.


A digit of the binary number or code is called bit. Also, the bit is the fundamental
storage unit of computer memory. The 8-bit (8-digit) binary number or code is called
byte and 16-bit binary number or code is called word. (Some microprocessor
manufactures refer the basic data size operated by the processor as word).

64. What is a bus?


Bus is a group of conducting lines that carries data, address and control signals.

65. Why data bus is bi-directional?


The microprocessor has to fetch (read) the data from memory or input device for
processing and after processing, it has to store (write) the data to memory or output
device. Hence the data bus is bi-directional.

66. Why address bus is unidirectional?


The address is an identification number used by the microprocessor to identify or
access a memory location or I / O device. It is an output signal from the processor.
Hence the address bus is unidirectional.

67. What is the function of microprocessor in a system?


The microprocessor is the master in the system, which controls all the activity of the
system. It issues address and control signals and fetches the instruction and data from
memory. Then it executes the instruction to take appropriate action.

68. What are the modes in which 8086 can operate?


The 8086 can operate in two modes and they are minimum (or uni-processor) mode
and maximum ( or multiprocessor) mode.

69. What is the data and address size in 8086?


The 8086 can operate on either 8-bit or 16-bit data. The 8086 uses 20 bit address to
access memory and 16-bit address to access 1/0 devices.

Explain the function of M/IO in 8086.

The signal M/IO is used to differentiate memory address and 1/0 address When the
processor is accessing memory locations MI 10 is asserted high and when it is accessing
1/0 mapped devices it is asserted low.

70. What are the control words of 8251A and what are its functions ?
The control words of 8251A are Mode word and Command word. The mode word
informs 8251 about the baud rate, character length, parity and stop bits. The command
word can be send to enable the data transmission and reception.

71. What are the information that can be obtained from the status word of
8251 ?
The status word can be read by the CPU to check the readiness of the transmitter or
receiver and to check the character synchronization in synchronous reception. It also
provides information regarding various errors in the data received. The various error
conditions that can be checked from the status word are parity error, overrun error and
framing error.

72. Give some examples of input devices to microprocessor-based system.


The input devices used in the microprocessor-based system are Keyboards, DIP
switches, ADC, Floppy disc, etc.

73. What are the tasks involved in keyboard interface?


The task involved in keyboard interfacing are sensing a key actuation, Debouncing
the key and Generating key codes (Decoding the key). These task are performed
software if the keyboard is interfaced through ports and they are performed by
hardware if the keyboard is interfaced through 8279.

74. How a keyboard matrix is formed in keyboard interface using 8279?


The return lines, RL0 to RL7 of 8279 are used to form the columns of keyboard
matrix. In decoded scan the scan lines SL0 to SL3 of 8279 are used to form the rows
of keyboard matrix. In encoded scan mode, the output lines of external decoder are
used as rows of keyboard matrix.
75. What is scanning in keyboard and what is scan time?
The process of sending a zero to each row of a keyboard matrix and reading the
columns for key actuation is called scanning. The scan time is the time taken by the
processor to scan all the rows one by one starting from first row and coming back to
the first row again.

76. What is scanning in display and what is the scan time?


In display devices, the process of sending display codes to 7 -segment LEDs to
display the LEDs one by one is called scanning ( or multiplexed display). The scan
time is the time taken to display all the 7-segm ent LEDs one by one, starting from
first LED and coming back to the first LED again.

77. What are the internal devices of a typical DAC?


The internal devices of a DAC are R/2R resistive network, an internal latch and
current to voltage converting amplifier.

78. What is settling or conversion time in DAC?


The time taken by the DAC to convert a given digital data to corresponding analog
signal is called conversion time.

79. What are the different types of ADC?


The different types of ADC are successive approximation ADC, counter type ADC
flash type ADC, integrator converters and voltage- to-frequency converters.

80. Define stack


Stack is a sequence of RAM memory locations defined by the programmer.

81. What is program counter? How is it useful in program execution?


The program counter keeps track of program execution. To execute a program the
starting address of the program is loaded in program counter. The PC sends out an
address to fetch a byte of instruction from memory and increments its content
automatically.

82. How the microprocessor is synchronized with peripherals?


The timing and control unit synchronizes all the microprocessor operations with clock
and generates control signals necessary for communication between the
microprocessor and peripherals.

S-ar putea să vă placă și