SlideShare ist ein Scribd-Unternehmen logo
1 von 41
Free Powerpoint TemplatesFree Powerpoint Templates
Assembly Language -I
Submitted to : Ms. Indu Chabbra
Submitted by : Devika Rangnekar
Rupam
Jaspreet Kaur
MCA – I (Morning)
Rollno : 9
30
15
Free Powerpoint Templates
Assembly Language
• A Language that allows instruction and
storage locations to be represented by letters
and symbols instead of binary numbers is
called Assembly Language or Symbolic
Language.
Free Powerpoint Templates
Free Powerpoint Templates
Instruction Set
• DIRECTIVE:
 Also called Pseudo- Instruction
 Tells assembler to perform specific action.
• INSTRUCTION: A set of statements that assembler
translates into object code.
• FORMAT for INSTRUCTION
[Identifier] Operation [Operand(s)] [;Comment]
Free Powerpoint Templates
Format for Instruction
• IDENTFIER: Name or Label that you give to a data item or an
instruction.
• OPERATION: reserved symbols that correspond to
instructions
• ex: ADD, MOV,SUB,AND, LD, LDR, …
• OPERAND : Data on which the operation is to be
performed.
 Registers -- specified by Rn, where n is the register number
 Numbers -- indicated by # (decimal) or x (hex)
 Label -- symbolic name of memory locations
• ex: ADD R1,R1,#3
Free Powerpoint Templates
Source and Destination
• Source operands can be:
– Register/Memory reference/Immediate value
• Destination operands can be:
– Register/Memory reference
• Note:
– The Intel CPU does NOT allow both source and
destination operands to be memory references
Free Powerpoint Templates
Examples of Instruction Set
• DIRECTIVE:
COUNT DB 1;
• INSTRUCTION:
– MOV AX, [0x00040222h]
– Can also have register names instead of hex
addresses e.g. MOV AX, [EBX]
Contents of memory
location 0x00040222
Refers to the contents of
register EBX
COUNT will define a byte with initial value 1
Free Powerpoint Templates
Types of Instructions
Data Transfer Instruction
Arithmetic Instruction
Logic Instruction
Shift Instruction
Rotate instruction
Free Powerpoint Templates
Data Transfer Instruction
PURPOSE:
to move data from source to destination
between internal register
b/w internal register and storage location in
memory
Free Powerpoint Templates
MNUEMONIC MEANING FORMAT OPERATION FLAGS
AFFEC
TED
MOV Move byte/word from
source operand to
destination operand
MOV D,S (S)(D) None
XCHG Swap data b/w 2 general
purpose reg .or a storage
location.
XCHG D,S (D) ↔ (S) None
LEA Load Effective Address
directly from memory
LEA Reg16,EA
LEA CX,label
(EA) (Reg16) None
LDS Load Register and Data
Segment(DS)
LDS
Reg16,Mem32
Mem32Reg
16
None
Data Transfer Instructions
Free Powerpoint Templates
Arithmetic Instructions
PURPOSE:
• Addition
• Subtraction
• Multiplication
• Division
Results
are stored
in flags
Following
formats
• Unsigned binary
bytes or word
• Signed binary
bytes or words
Free Powerpoint Templates
Arithmetic Instructions
Symbol Meaning Format Operation Flags
ADD Add byte or word ADD D,S (S) + (D)  (D)
Carry  (CF)
OF,SF,ZF,AF,PF,
CF
ADC Add byte or word with
carry
ADC D,S (S) + (D) + (CF)  (D)
Carry  (CF)
OF,SF,ZF,AF,PF,
CF
INC Increment byte or word
by 1
INC D (D) + 1  (D) OF,SF,ZF,AF,PF
SUB Subtract SUB D,S (D) – (S)  (D) OF,SF,ZF,AF,PF,
CF
SBB Subtract with borrow SBB D,S (D) – (S) – (CF)  (D) OF,SF,ZF,AF,PF,
CF
DEC Decrement by 1 DEC D (D) – 1  (D) OF,SF,ZF,AF,PF
Free Powerpoint Templates
Contd…
Symbol Meaning Format Operation Flag
NEG Negation NEG D (O) – (D)  (D) OF,SF,ZF,AF,PF,
CF
MUL Multiply unsigned
bytes
MUL S (AL) . (S8)  (AX)
(AX) . (S16)  (DX),(AX)
OF,SF,ZF,AF,PF,
CF
Undefined
IMUL Multiplication of
signed integers
IMUL S (AL) . (S8)  (AX)
(AX) . (S16) (DX),(AX)
OF,SF,ZF,AF,PF,
CF
Undefined
DIV Divide unsigned
bytes
DIV S • Q((AX) / (S8) ) (AL)
R((AX) / (S8) ) (AH)
• Q((DX, AX) / (S16) ) (AX)
R((DX, AX) / (S16) ) (DX)
OF,SF,ZF,AF,PF,
CF
Undefined
IDIV Division of signed
integers
IDIV S • Q((AX) / (S8) ) (AX)
R((AX) / (S8) ) (AH)
• Q((DX, AX) / (S16) ) (AX)
R((DX, AX) / (S16) ) (DX)
OF,SF,ZF,AF,PF,
CF
Undefined
Free Powerpoint Templates
Logic Instruction
Free Powerpoint Templates
Logic instructions
Symbol Meaning Format Operation
AND Logical AND AND D,S (S) . (D)  (D)
OR Logical Inclusive OR OR D,S (S) + (D)  (D)
XOR Logical Exclusive OR XOR D,S (S) + (D)  (D)
NOT Logical NOT NOT D (D)  (D)
EXAMPLE: Let AX=1010 BX=0111
AND BX,AX
BX=0010
1010
.0111
0010
Free Powerpoint Templates
Shift Instrun. Rotate Instrun.
Mnemonic Meaning Format
ROL Rotate left ROL D, count
ROR Rotate Right ROR D, count
Mnemonic Meaning Format
SAL/SHL Shift
arithmetic
left/Logical
left
SAL/SHL D,
count
SHR Shift logical
Right
SHR D, count
Free Powerpoint Templates
EXAMPLES
• SHIFT INSTUCTION
• SHL BH,1 ;shift 1 bit left
• BH :00001010
• OUTPUT:
• ROTATE INSTRUCTION
• ROL BH,1 ; rotate 1 bit left
• BH: 10110111
• OUTPUT:
0 0 0 0 1 0 1 0
0 0 0 1 0 1 0 0
1 0 1 1 0 1 1 1
0 1 1 0 1 1 1 1
LOST
INCLUDED
Free Powerpoint Templates
Free Powerpoint Templates
ARITHMETIC OPERATORS
These operators include the arithmetic signs and perform arithmetic
during the assembly.
SIGN TYPE EXAMPLE EFFECT
+ Positive +FLDA Treats FLDA as positive
- Negation -FLDA Reverses sign of FLDA
+ Addition FLDA+25 Adds 25 to address of FLDA
- Subtraction FLDB-FLDA Calculates difference between
two offset address
* Multiplication Value*3 Multiplies value by 3
/ Division Value/3 Divides value by 3
MOD Remainder Value1 MOD value2 Delivers remainder for
value1/value2
Free Powerpoint Templates
The LOGICAL operators process the bits in an
expression.
LOGICAL OPERATORS
OPERATOR USED AS EFFECT
AND EXPR1 AND EXPR2 ANDs the bits
OR EXPR1 OR EXPR2 Ors the bits
XOR EXPR1 XOR EXPR2 Exclusive Ors the
bits
NOT EXPR1 NOT EXPR2 Reverses the bits
EXAMPLE:
MOV CL,00111100B AND 01010101B ; CL= 00010100B
MOV DL,NOT 01010101B ; CL=10101010B
Free Powerpoint Templates
High/Highword & Low/Lowword
Operators
HIGH and HIGHWORD
OPERATORS
HIGH operator returns
the high(leftmost) byte of
an expression.
HIGHWORD Operator
returns the high word of an
expression.
Example : EQUVAL EQU 1234H
Mov CL,HIGH EQUVAL
EFFECT : Load 12H in CL
LOW and LOWWORD
OPERATORS
LOW operator returns
the low(rightmost) byte of
an expression.
LOWWORD operator
returns the low word of an
expression.
Example : EQUVAL EQU 1234H
MOV CL,LOW EQUVAL
EFFECT : Load 34H in CL
Free Powerpoint Templates
Free Powerpoint Templates
SHL and SHR Operators
 The operators SHL(shift left) and SHR (shift
right) shift an expression during an assembly.
 FORMAT:
expression SHL/SHR count
 EXAMPLE:
MOV BL,01011101B SHR 3 ; Load 00001011B
Free Powerpoint Templates
OFFSET OPERATOR
 The OFFSET operator returns the offset address
of a variable or label.
 OFFSET : the distance in bytes from the segment
address to another location within the segment.
 CODED AS :
offset variable/label
 EXAMPLE:
MOV DX,OFFSET PART_TBL ; return offset address of part_tbl
Free Powerpoint Templates
PTR OPERATOR
 Provides flexibility to access part of a variable.
 Can also be used to combine elements of smaller type.
 Used to override the default type of variable.
SYNTAX:
type ptr expression
Example :
.data
Dval dword 12345678h |<------ DVAL ------- |  -----------ARRAY-----
Array byte 00h,10h,20h,30h
.code
Mov al,dval ;error
Mov al, byte ptr dval ;al=78h
Mov ax, dval ;error
Mov ax, word ptr dval ;ax=5678h
Mov eax ,array ;error
Mov eax, dword ptr array ;eax=30201000h
78 56 34 12 00 10 20 30 40
Free Powerpoint Templates
DUP OPERATOR
 USED: to generate multiple bytes or words with known as well
as un-initialized values.
 PURPOSE: to tell the assembler to duplicate or repeat the data
definition directive a specific number of times.
 EXAMPLE:
var1 BYTE 20 DUP(0) ; 20 bytes of zero
var2 BYTE 20 DUP(?) ; 20 bytes uninitialized
var3 BYTE 10, 3DUP(0) , 20 ; 5 bytes 10,0,0,0,20
 The (?) with the dup means that storage allocated by the directive
is uninitialized or undefined.
 The assembler allocates the space but does not write in it. Use ?
for buffer areas or variables your program will initialize at run
time.
Free Powerpoint Templates
SEG OPERATOR
 The seg operator does two things :
1) Returns the address of the segment in which a
specified variable or label is placed.
2) It converts the type of the specified expression from
address to constant.
 Coded As:
seg variable/label
 Example :
MOV AX,SEG WORDA ; Get address of data seg
MOV AX,SEG A10BEGIN ; Get address of code seg
Free Powerpoint Templates
INDEX OPERATOR
 Add a constant to a register to generate an offset.
 Allows to reference a members in an array.
 Uses square brackets[ ] and acts like a plus(+) sign.
 Two equivalent forms:
– constant[ reg ]
– [constant + reg ]
EXAMPLE:
part_tbl DB 25 DUP(?) ;Defined table
MOV CL<PART_TBL[4] ;accessing 5th entry
MOV DX,[BX] ; offset address in base reg DS:BX
MOV[BX+SI+4],AX ;base+index+constant
Free Powerpoint Templates
The LENGTH operator returns the number of
entries defined by a DUP operator.
EXAMPLE :
PART_TBL DW 10 DUP(?)
MOV DX,LENGTH PART_TBL
If the referenced operand does not contain a
DUP entry, the operator returns the value 01.
LENGTH OPERATOR
Free Powerpoint Templates
TYPE OPERATOR
 The TYPE operator returns the number of bytes,
according to the definition of the referenced variable.
 CODED AS:
TYPE variable/label
DEFINITION NO. OF BYTES FOR NUMERIC VARIABLE
DB/BYTE 1
DW/WORD 2
DD/DWORD 4
DF/FWORD 8
DT/TWORD 10
STRUC/STRUCT No> of bytes defined by structure
NEAR label FFFFH
FAR label FFFFH
Free Powerpoint Templates
SIZE OPERATOR
 Returns the number of bytes taken up by a structure
 Basically, LENGTH * TYPE
 Coded As:
SIZE variable
 Example :
BYTEA DB? ;Define one byte
PART_TBL DW 10 DUP(?) ;Define 10 words
MOV AX,TYPE BYTEA ;AX=0001H
MOV AX,TYPE PART_TBL ;AX=0002H
MOV CX,LENGTH PART_TBL ;CX=000AH(10)
MOV DX,SIZE PART_TBL ;DX=0014H(20)
Free Powerpoint Templates
Free Powerpoint Templates
Execution of an Assembly Lang. Program
Assembling
Linking
Execution
Includes following steps:
Free Powerpoint Templates
ASSEMBLING, LINKING AND
EXECUTING
SOURCE CODE:
The symbolic
instructions that we
code in assembly
language.
OBJECT CODE:
We use an assembler
program to translate
the source program
into machine code.
EXECUTABLE
MODULE:
Finally, using a linker,
execution of object
code.
Free Powerpoint Templates
EDIT
PROG.
ASM
ASSEMBLE
PROG.
OBJ
LINK
PROG.
EXE
EXECUTE
EDITOR
ASSEMBLER
LINKER
Free Powerpoint Templates
EDITING A PROGRAM
After writing our program we will save it with .ASM
extension.
Although spacing is not important to the assembler, but a
program is more readable if we keep data properly aligned.
For this we can use any editor or word processing program
that produces a standard unformatted ASCII file.
Free Powerpoint Templates
ASSEMBLING SOURCE PROGRAM
Assembler converts source statements
into machine code and displays error
messages on the screen if any.
Typical errors include a name that
violates naming conventions, an
operation i.e. spelled incorrectly.
Optional output files from the assembly
step are OBJECT(.OBJ), LISTING(.LST)
and CROSS REFERNCE(.CRF or .SBR).
Free Powerpoint Templates
LINKING AN OBJECT PROGRAM
When our
program is free
from errors next
step is to link
the object
module
produced by
the assembler
and that
contains only
machine code.
Linker
combines, if
requested,
more than one
separately
assembled
module into
one executable
program.
Generates an
.EXE module
and initializes it
with special
instructions to
facilitate its
subsequent
loading for
execution.
Output files
from this step
are
EXECUTABLE(.EX
E), MAP(.MAP)
and
LIBRARY(.LIB)
Free Powerpoint Templates
EXECUTING A PROGRAM
• Having assembled and linked a program, we
can now execute it .
• If the .EXE file is in the default drive, you could
ask the loader to read it into memory for
execution by typing
• C:TASMBIN>PROG.EXE
Free Powerpoint Templates
STEPS TO CREATE AND RUN A
PROGRAM
Write the
source code
in a notepad
file.
Save it in
tasmbin with
.asm
extension.
Now , go to
DOS prompt.
Set the path
to tasmbin.
Write tlink
filename.asm
to link the
file.
Type filename
to run the
program.
Give the
required
input.
Free Powerpoint Templates

Weitere ähnliche Inhalte

Was ist angesagt?

Types of Instruction Format
Types of Instruction FormatTypes of Instruction Format
Types of Instruction FormatDhrumil Panchal
 
General register organization (computer organization)
General register organization  (computer organization)General register organization  (computer organization)
General register organization (computer organization)rishi ram khanal
 
Intel Microprocessors 8086 Documentation
Intel Microprocessors 8086 DocumentationIntel Microprocessors 8086 Documentation
Intel Microprocessors 8086 DocumentationAdeel Rasheed
 
ASSEMBLY LANGUAGE.pptx
ASSEMBLY LANGUAGE.pptxASSEMBLY LANGUAGE.pptx
ASSEMBLY LANGUAGE.pptxEdFeranil
 
Data transfer and manipulation
Data transfer and manipulationData transfer and manipulation
Data transfer and manipulationSanjeev Patel
 
Assembly language programming(unit 4)
Assembly language programming(unit 4)Assembly language programming(unit 4)
Assembly language programming(unit 4)Ashim Saha
 
Assembly Language Programming By Ytha Yu, Charles Marut Chap 10 ( Arrays and ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 10 ( Arrays and ...Assembly Language Programming By Ytha Yu, Charles Marut Chap 10 ( Arrays and ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 10 ( Arrays and ...Bilal Amjad
 
Unit 4 memory system
Unit 4   memory systemUnit 4   memory system
Unit 4 memory systemchidabdu
 
Assemblers: Ch03
Assemblers: Ch03Assemblers: Ch03
Assemblers: Ch03desta_gebre
 
Assembly language 8086
Assembly language 8086Assembly language 8086
Assembly language 8086John Cutajar
 
Stack Operations
Stack Operations Stack Operations
Stack Operations RidaZaman1
 
8237 / 8257 DMA
8237 / 8257 DMA8237 / 8257 DMA
8237 / 8257 DMAAJAL A J
 
Assembly language programming_fundamentals 8086
Assembly language programming_fundamentals 8086Assembly language programming_fundamentals 8086
Assembly language programming_fundamentals 8086Shehrevar Davierwala
 
Assembler - System Programming
Assembler - System ProgrammingAssembler - System Programming
Assembler - System ProgrammingRadhika Talaviya
 
MASM -UNIT-III
MASM -UNIT-IIIMASM -UNIT-III
MASM -UNIT-IIIDr.YNM
 
Floating point arithmetic operations (1)
Floating point arithmetic operations (1)Floating point arithmetic operations (1)
Floating point arithmetic operations (1)cs19club
 

Was ist angesagt? (20)

Types of Instruction Format
Types of Instruction FormatTypes of Instruction Format
Types of Instruction Format
 
Instruction formats-in-8086
Instruction formats-in-8086Instruction formats-in-8086
Instruction formats-in-8086
 
General register organization (computer organization)
General register organization  (computer organization)General register organization  (computer organization)
General register organization (computer organization)
 
Intel Microprocessors 8086 Documentation
Intel Microprocessors 8086 DocumentationIntel Microprocessors 8086 Documentation
Intel Microprocessors 8086 Documentation
 
ASSEMBLY LANGUAGE.pptx
ASSEMBLY LANGUAGE.pptxASSEMBLY LANGUAGE.pptx
ASSEMBLY LANGUAGE.pptx
 
Data transfer and manipulation
Data transfer and manipulationData transfer and manipulation
Data transfer and manipulation
 
Assembly language programming(unit 4)
Assembly language programming(unit 4)Assembly language programming(unit 4)
Assembly language programming(unit 4)
 
Assembly Language Programming By Ytha Yu, Charles Marut Chap 10 ( Arrays and ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 10 ( Arrays and ...Assembly Language Programming By Ytha Yu, Charles Marut Chap 10 ( Arrays and ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 10 ( Arrays and ...
 
Unit 4 memory system
Unit 4   memory systemUnit 4   memory system
Unit 4 memory system
 
Assemblers: Ch03
Assemblers: Ch03Assemblers: Ch03
Assemblers: Ch03
 
Assembly language 8086
Assembly language 8086Assembly language 8086
Assembly language 8086
 
Registers
RegistersRegisters
Registers
 
Stack Operations
Stack Operations Stack Operations
Stack Operations
 
8237 / 8257 DMA
8237 / 8257 DMA8237 / 8257 DMA
8237 / 8257 DMA
 
Assembly language programming_fundamentals 8086
Assembly language programming_fundamentals 8086Assembly language programming_fundamentals 8086
Assembly language programming_fundamentals 8086
 
Assembler - System Programming
Assembler - System ProgrammingAssembler - System Programming
Assembler - System Programming
 
Registers
RegistersRegisters
Registers
 
MASM -UNIT-III
MASM -UNIT-IIIMASM -UNIT-III
MASM -UNIT-III
 
Floating point arithmetic operations (1)
Floating point arithmetic operations (1)Floating point arithmetic operations (1)
Floating point arithmetic operations (1)
 
Introduction to Compiler
Introduction to CompilerIntroduction to Compiler
Introduction to Compiler
 

Andere mochten auch

Shift rotate
Shift rotateShift rotate
Shift rotatefika sweety
 
Logic, shift and rotate instruction
Logic, shift and rotate instructionLogic, shift and rotate instruction
Logic, shift and rotate instructionkashif Shafqat
 
Abelardo Alaan profile
Abelardo Alaan profileAbelardo Alaan profile
Abelardo Alaan profileAbelardo Alaan
 
arithmetic ins in 8051
arithmetic ins in 8051arithmetic ins in 8051
arithmetic ins in 8051VJ Aiswaryadevi
 
logic shift and rotate instruction
logic shift and rotate instructionlogic shift and rotate instruction
logic shift and rotate instructionJiaahRajpout123
 
Arithmetic instructions
Arithmetic instructionsArithmetic instructions
Arithmetic instructionsRobert Almazan
 
Arithmetic and logical instructions set
Arithmetic and logical instructions setArithmetic and logical instructions set
Arithmetic and logical instructions setRobert Almazan
 
Software AND its Types & CASE toolS
Software  AND     its   Types   &    CASE toolSSoftware  AND     its   Types   &    CASE toolS
Software AND its Types & CASE toolSkashif Shafqat
 
Assembly
AssemblyAssembly
Assemblynick333y
 
.NET Framework Projet with C#
.NET Framework Projet with C#.NET Framework Projet with C#
.NET Framework Projet with C#eclumson
 
1.arithmetic & logical operations
1.arithmetic & logical operations1.arithmetic & logical operations
1.arithmetic & logical operationsmukesh bhardwaj
 
Assembly fundamentals
Assembly fundamentalsAssembly fundamentals
Assembly fundamentalsSyed Zaid Irshad
 
Assembly language part I
Assembly language part IAssembly language part I
Assembly language part IMohammed A. Imran
 
Assembly Language Tanka - SAKAI Hiroaki
Assembly Language Tanka - SAKAI HiroakiAssembly Language Tanka - SAKAI Hiroaki
Assembly Language Tanka - SAKAI Hiroakiasmtanka
 
Introduction to Assembly Language
Introduction to Assembly LanguageIntroduction to Assembly Language
Introduction to Assembly LanguageMotaz Saad
 
Chapt 01 basic concepts
Chapt 01   basic conceptsChapt 01   basic concepts
Chapt 01 basic conceptsbushrakainat214
 

Andere mochten auch (20)

Shift rotate
Shift rotateShift rotate
Shift rotate
 
Logic, shift and rotate instruction
Logic, shift and rotate instructionLogic, shift and rotate instruction
Logic, shift and rotate instruction
 
Intro to assembly language
Intro to assembly languageIntro to assembly language
Intro to assembly language
 
Abelardo Alaan profile
Abelardo Alaan profileAbelardo Alaan profile
Abelardo Alaan profile
 
arithmetic ins in 8051
arithmetic ins in 8051arithmetic ins in 8051
arithmetic ins in 8051
 
logic shift and rotate instruction
logic shift and rotate instructionlogic shift and rotate instruction
logic shift and rotate instruction
 
Arithmetic instructions
Arithmetic instructionsArithmetic instructions
Arithmetic instructions
 
Arithmetic and logical instructions set
Arithmetic and logical instructions setArithmetic and logical instructions set
Arithmetic and logical instructions set
 
Software AND its Types & CASE toolS
Software  AND     its   Types   &    CASE toolSSoftware  AND     its   Types   &    CASE toolS
Software AND its Types & CASE toolS
 
[ASM]Lab7
[ASM]Lab7[ASM]Lab7
[ASM]Lab7
 
Assembly
AssemblyAssembly
Assembly
 
.NET Framework Projet with C#
.NET Framework Projet with C#.NET Framework Projet with C#
.NET Framework Projet with C#
 
1.arithmetic & logical operations
1.arithmetic & logical operations1.arithmetic & logical operations
1.arithmetic & logical operations
 
Assembly fundamentals
Assembly fundamentalsAssembly fundamentals
Assembly fundamentals
 
Assembly language part I
Assembly language part IAssembly language part I
Assembly language part I
 
Assembly Language Tanka - SAKAI Hiroaki
Assembly Language Tanka - SAKAI HiroakiAssembly Language Tanka - SAKAI Hiroaki
Assembly Language Tanka - SAKAI Hiroaki
 
Introduction to Assembly Language
Introduction to Assembly LanguageIntroduction to Assembly Language
Introduction to Assembly Language
 
Chapt 01 basic concepts
Chapt 01   basic conceptsChapt 01   basic concepts
Chapt 01 basic concepts
 
Processor Basics
Processor BasicsProcessor Basics
Processor Basics
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 

Ähnlich wie Assembly Language -I

8086 instruction set (with simulator)
8086 instruction set (with simulator)8086 instruction set (with simulator)
8086 instruction set (with simulator)Aswini Dharmaraj
 
Part III: Assembly Language
Part III: Assembly LanguagePart III: Assembly Language
Part III: Assembly LanguageAhmed M. Abed
 
Assembly Language Compiler Implementation
Assembly Language Compiler ImplementationAssembly Language Compiler Implementation
Assembly Language Compiler ImplementationRAVI TEJA KOMMA
 
12 mt06ped008
12 mt06ped008 12 mt06ped008
12 mt06ped008 vijaydeepakg
 
Instruction sets of 8086
Instruction sets of 8086Instruction sets of 8086
Instruction sets of 8086Mahalakshmiv11
 
Mastering Assembly Language: Programming with 8086
Mastering Assembly Language: Programming with 8086Mastering Assembly Language: Programming with 8086
Mastering Assembly Language: Programming with 8086sravanithonta79
 
8086-instruction-set-ppt
 8086-instruction-set-ppt 8086-instruction-set-ppt
8086-instruction-set-pptjemimajerome
 
Intel8086_Flags_Addr_Modes_sample_pgms.pdf
Intel8086_Flags_Addr_Modes_sample_pgms.pdfIntel8086_Flags_Addr_Modes_sample_pgms.pdf
Intel8086_Flags_Addr_Modes_sample_pgms.pdfAnonymous611358
 
8086 instructions
8086 instructions8086 instructions
8086 instructionsRavi Anand
 
VB Codes
VB CodesVB Codes
VB Codesprcastano
 

Ähnlich wie Assembly Language -I (20)

8086 instruction set (with simulator)
8086 instruction set (with simulator)8086 instruction set (with simulator)
8086 instruction set (with simulator)
 
Part III: Assembly Language
Part III: Assembly LanguagePart III: Assembly Language
Part III: Assembly Language
 
Assembly Language Compiler Implementation
Assembly Language Compiler ImplementationAssembly Language Compiler Implementation
Assembly Language Compiler Implementation
 
12 mt06ped008
12 mt06ped008 12 mt06ped008
12 mt06ped008
 
Instruction sets of 8086
Instruction sets of 8086Instruction sets of 8086
Instruction sets of 8086
 
Wk1to4
Wk1to4Wk1to4
Wk1to4
 
Al2ed chapter4
Al2ed chapter4Al2ed chapter4
Al2ed chapter4
 
Mastering Assembly Language: Programming with 8086
Mastering Assembly Language: Programming with 8086Mastering Assembly Language: Programming with 8086
Mastering Assembly Language: Programming with 8086
 
8086 Instruction set
8086 Instruction set8086 Instruction set
8086 Instruction set
 
8086-instruction-set-ppt
 8086-instruction-set-ppt 8086-instruction-set-ppt
8086-instruction-set-ppt
 
Intel8086_Flags_Addr_Modes_sample_pgms.pdf
Intel8086_Flags_Addr_Modes_sample_pgms.pdfIntel8086_Flags_Addr_Modes_sample_pgms.pdf
Intel8086_Flags_Addr_Modes_sample_pgms.pdf
 
Addressing modes
Addressing modesAddressing modes
Addressing modes
 
Lecture6
Lecture6Lecture6
Lecture6
 
Instruction set of 8086
Instruction set of 8086Instruction set of 8086
Instruction set of 8086
 
8085 instruction set
8085 instruction set8085 instruction set
8085 instruction set
 
Lecture5
Lecture5Lecture5
Lecture5
 
Lecture5(1)
Lecture5(1)Lecture5(1)
Lecture5(1)
 
[ASM]Lab4
[ASM]Lab4[ASM]Lab4
[ASM]Lab4
 
8086 instructions
8086 instructions8086 instructions
8086 instructions
 
VB Codes
VB CodesVB Codes
VB Codes
 

Mehr von Devika Rangnekar

Project Report on Marketing Information System
Project Report on Marketing Information SystemProject Report on Marketing Information System
Project Report on Marketing Information SystemDevika Rangnekar
 
Working of input and output devices
Working of input and output devicesWorking of input and output devices
Working of input and output devicesDevika Rangnekar
 
Difference between ascii and ebdic
Difference between ascii and ebdicDifference between ascii and ebdic
Difference between ascii and ebdicDevika Rangnekar
 
Classification of computers
Classification of computersClassification of computers
Classification of computersDevika Rangnekar
 
Generations of computer
Generations of computerGenerations of computer
Generations of computerDevika Rangnekar
 
working of Projector
working of Projectorworking of Projector
working of ProjectorDevika Rangnekar
 
Difference between internet and www
Difference between internet and wwwDifference between internet and www
Difference between internet and wwwDevika Rangnekar
 
Raster Scan And Random Scan
Raster Scan And Random ScanRaster Scan And Random Scan
Raster Scan And Random ScanDevika Rangnekar
 

Mehr von Devika Rangnekar (13)

Case study
Case studyCase study
Case study
 
Business plan
Business planBusiness plan
Business plan
 
Project Report on Marketing Information System
Project Report on Marketing Information SystemProject Report on Marketing Information System
Project Report on Marketing Information System
 
Final mkis
Final mkisFinal mkis
Final mkis
 
Working of input and output devices
Working of input and output devicesWorking of input and output devices
Working of input and output devices
 
Difference between ascii and ebdic
Difference between ascii and ebdicDifference between ascii and ebdic
Difference between ascii and ebdic
 
Operating system
Operating systemOperating system
Operating system
 
Classification of computers
Classification of computersClassification of computers
Classification of computers
 
Generations of computer
Generations of computerGenerations of computer
Generations of computer
 
working of Projector
working of Projectorworking of Projector
working of Projector
 
Difference between internet and www
Difference between internet and wwwDifference between internet and www
Difference between internet and www
 
Raster Scan And Random Scan
Raster Scan And Random ScanRaster Scan And Random Scan
Raster Scan And Random Scan
 
Transmission Media
Transmission MediaTransmission Media
Transmission Media
 

KĂźrzlich hochgeladen

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel AraĂşjo
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

KĂźrzlich hochgeladen (20)

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

Assembly Language -I

  • 1. Free Powerpoint TemplatesFree Powerpoint Templates Assembly Language -I Submitted to : Ms. Indu Chabbra Submitted by : Devika Rangnekar Rupam Jaspreet Kaur MCA – I (Morning) Rollno : 9 30 15
  • 2. Free Powerpoint Templates Assembly Language • A Language that allows instruction and storage locations to be represented by letters and symbols instead of binary numbers is called Assembly Language or Symbolic Language.
  • 4. Free Powerpoint Templates Instruction Set • DIRECTIVE:  Also called Pseudo- Instruction  Tells assembler to perform specific action. • INSTRUCTION: A set of statements that assembler translates into object code. • FORMAT for INSTRUCTION [Identifier] Operation [Operand(s)] [;Comment]
  • 5. Free Powerpoint Templates Format for Instruction • IDENTFIER: Name or Label that you give to a data item or an instruction. • OPERATION: reserved symbols that correspond to instructions • ex: ADD, MOV,SUB,AND, LD, LDR, … • OPERAND : Data on which the operation is to be performed.  Registers -- specified by Rn, where n is the register number  Numbers -- indicated by # (decimal) or x (hex)  Label -- symbolic name of memory locations • ex: ADD R1,R1,#3
  • 6. Free Powerpoint Templates Source and Destination • Source operands can be: – Register/Memory reference/Immediate value • Destination operands can be: – Register/Memory reference • Note: – The Intel CPU does NOT allow both source and destination operands to be memory references
  • 7. Free Powerpoint Templates Examples of Instruction Set • DIRECTIVE: COUNT DB 1; • INSTRUCTION: – MOV AX, [0x00040222h] – Can also have register names instead of hex addresses e.g. MOV AX, [EBX] Contents of memory location 0x00040222 Refers to the contents of register EBX COUNT will define a byte with initial value 1
  • 8. Free Powerpoint Templates Types of Instructions Data Transfer Instruction Arithmetic Instruction Logic Instruction Shift Instruction Rotate instruction
  • 9. Free Powerpoint Templates Data Transfer Instruction PURPOSE: to move data from source to destination between internal register b/w internal register and storage location in memory
  • 10. Free Powerpoint Templates MNUEMONIC MEANING FORMAT OPERATION FLAGS AFFEC TED MOV Move byte/word from source operand to destination operand MOV D,S (S)(D) None XCHG Swap data b/w 2 general purpose reg .or a storage location. XCHG D,S (D) ↔ (S) None LEA Load Effective Address directly from memory LEA Reg16,EA LEA CX,label (EA) (Reg16) None LDS Load Register and Data Segment(DS) LDS Reg16,Mem32 Mem32Reg 16 None Data Transfer Instructions
  • 11. Free Powerpoint Templates Arithmetic Instructions PURPOSE: • Addition • Subtraction • Multiplication • Division Results are stored in flags Following formats • Unsigned binary bytes or word • Signed binary bytes or words
  • 12. Free Powerpoint Templates Arithmetic Instructions Symbol Meaning Format Operation Flags ADD Add byte or word ADD D,S (S) + (D)  (D) Carry  (CF) OF,SF,ZF,AF,PF, CF ADC Add byte or word with carry ADC D,S (S) + (D) + (CF)  (D) Carry  (CF) OF,SF,ZF,AF,PF, CF INC Increment byte or word by 1 INC D (D) + 1  (D) OF,SF,ZF,AF,PF SUB Subtract SUB D,S (D) – (S)  (D) OF,SF,ZF,AF,PF, CF SBB Subtract with borrow SBB D,S (D) – (S) – (CF)  (D) OF,SF,ZF,AF,PF, CF DEC Decrement by 1 DEC D (D) – 1  (D) OF,SF,ZF,AF,PF
  • 13. Free Powerpoint Templates Contd… Symbol Meaning Format Operation Flag NEG Negation NEG D (O) – (D)  (D) OF,SF,ZF,AF,PF, CF MUL Multiply unsigned bytes MUL S (AL) . (S8)  (AX) (AX) . (S16)  (DX),(AX) OF,SF,ZF,AF,PF, CF Undefined IMUL Multiplication of signed integers IMUL S (AL) . (S8)  (AX) (AX) . (S16) (DX),(AX) OF,SF,ZF,AF,PF, CF Undefined DIV Divide unsigned bytes DIV S • Q((AX) / (S8) ) (AL) R((AX) / (S8) ) (AH) • Q((DX, AX) / (S16) ) (AX) R((DX, AX) / (S16) ) (DX) OF,SF,ZF,AF,PF, CF Undefined IDIV Division of signed integers IDIV S • Q((AX) / (S8) ) (AX) R((AX) / (S8) ) (AH) • Q((DX, AX) / (S16) ) (AX) R((DX, AX) / (S16) ) (DX) OF,SF,ZF,AF,PF, CF Undefined
  • 15. Free Powerpoint Templates Logic instructions Symbol Meaning Format Operation AND Logical AND AND D,S (S) . (D)  (D) OR Logical Inclusive OR OR D,S (S) + (D)  (D) XOR Logical Exclusive OR XOR D,S (S) + (D)  (D) NOT Logical NOT NOT D (D)  (D) EXAMPLE: Let AX=1010 BX=0111 AND BX,AX BX=0010 1010 .0111 0010
  • 16. Free Powerpoint Templates Shift Instrun. Rotate Instrun. Mnemonic Meaning Format ROL Rotate left ROL D, count ROR Rotate Right ROR D, count Mnemonic Meaning Format SAL/SHL Shift arithmetic left/Logical left SAL/SHL D, count SHR Shift logical Right SHR D, count
  • 17. Free Powerpoint Templates EXAMPLES • SHIFT INSTUCTION • SHL BH,1 ;shift 1 bit left • BH :00001010 • OUTPUT: • ROTATE INSTRUCTION • ROL BH,1 ; rotate 1 bit left • BH: 10110111 • OUTPUT: 0 0 0 0 1 0 1 0 0 0 0 1 0 1 0 0 1 0 1 1 0 1 1 1 0 1 1 0 1 1 1 1 LOST INCLUDED
  • 19. Free Powerpoint Templates ARITHMETIC OPERATORS These operators include the arithmetic signs and perform arithmetic during the assembly. SIGN TYPE EXAMPLE EFFECT + Positive +FLDA Treats FLDA as positive - Negation -FLDA Reverses sign of FLDA + Addition FLDA+25 Adds 25 to address of FLDA - Subtraction FLDB-FLDA Calculates difference between two offset address * Multiplication Value*3 Multiplies value by 3 / Division Value/3 Divides value by 3 MOD Remainder Value1 MOD value2 Delivers remainder for value1/value2
  • 20. Free Powerpoint Templates The LOGICAL operators process the bits in an expression. LOGICAL OPERATORS OPERATOR USED AS EFFECT AND EXPR1 AND EXPR2 ANDs the bits OR EXPR1 OR EXPR2 Ors the bits XOR EXPR1 XOR EXPR2 Exclusive Ors the bits NOT EXPR1 NOT EXPR2 Reverses the bits EXAMPLE: MOV CL,00111100B AND 01010101B ; CL= 00010100B MOV DL,NOT 01010101B ; CL=10101010B
  • 21. Free Powerpoint Templates High/Highword & Low/Lowword Operators HIGH and HIGHWORD OPERATORS HIGH operator returns the high(leftmost) byte of an expression. HIGHWORD Operator returns the high word of an expression. Example : EQUVAL EQU 1234H Mov CL,HIGH EQUVAL EFFECT : Load 12H in CL LOW and LOWWORD OPERATORS LOW operator returns the low(rightmost) byte of an expression. LOWWORD operator returns the low word of an expression. Example : EQUVAL EQU 1234H MOV CL,LOW EQUVAL EFFECT : Load 34H in CL
  • 23. Free Powerpoint Templates SHL and SHR Operators  The operators SHL(shift left) and SHR (shift right) shift an expression during an assembly.  FORMAT: expression SHL/SHR count  EXAMPLE: MOV BL,01011101B SHR 3 ; Load 00001011B
  • 24. Free Powerpoint Templates OFFSET OPERATOR  The OFFSET operator returns the offset address of a variable or label.  OFFSET : the distance in bytes from the segment address to another location within the segment.  CODED AS : offset variable/label  EXAMPLE: MOV DX,OFFSET PART_TBL ; return offset address of part_tbl
  • 25. Free Powerpoint Templates PTR OPERATOR  Provides flexibility to access part of a variable.  Can also be used to combine elements of smaller type.  Used to override the default type of variable. SYNTAX: type ptr expression Example : .data Dval dword 12345678h |<------ DVAL ------- |  -----------ARRAY----- Array byte 00h,10h,20h,30h .code Mov al,dval ;error Mov al, byte ptr dval ;al=78h Mov ax, dval ;error Mov ax, word ptr dval ;ax=5678h Mov eax ,array ;error Mov eax, dword ptr array ;eax=30201000h 78 56 34 12 00 10 20 30 40
  • 26. Free Powerpoint Templates DUP OPERATOR  USED: to generate multiple bytes or words with known as well as un-initialized values.  PURPOSE: to tell the assembler to duplicate or repeat the data definition directive a specific number of times.  EXAMPLE: var1 BYTE 20 DUP(0) ; 20 bytes of zero var2 BYTE 20 DUP(?) ; 20 bytes uninitialized var3 BYTE 10, 3DUP(0) , 20 ; 5 bytes 10,0,0,0,20  The (?) with the dup means that storage allocated by the directive is uninitialized or undefined.  The assembler allocates the space but does not write in it. Use ? for buffer areas or variables your program will initialize at run time.
  • 27. Free Powerpoint Templates SEG OPERATOR  The seg operator does two things : 1) Returns the address of the segment in which a specified variable or label is placed. 2) It converts the type of the specified expression from address to constant.  Coded As: seg variable/label  Example : MOV AX,SEG WORDA ; Get address of data seg MOV AX,SEG A10BEGIN ; Get address of code seg
  • 28. Free Powerpoint Templates INDEX OPERATOR  Add a constant to a register to generate an offset.  Allows to reference a members in an array.  Uses square brackets[ ] and acts like a plus(+) sign.  Two equivalent forms: – constant[ reg ] – [constant + reg ] EXAMPLE: part_tbl DB 25 DUP(?) ;Defined table MOV CL<PART_TBL[4] ;accessing 5th entry MOV DX,[BX] ; offset address in base reg DS:BX MOV[BX+SI+4],AX ;base+index+constant
  • 29. Free Powerpoint Templates The LENGTH operator returns the number of entries defined by a DUP operator. EXAMPLE : PART_TBL DW 10 DUP(?) MOV DX,LENGTH PART_TBL If the referenced operand does not contain a DUP entry, the operator returns the value 01. LENGTH OPERATOR
  • 30. Free Powerpoint Templates TYPE OPERATOR  The TYPE operator returns the number of bytes, according to the definition of the referenced variable.  CODED AS: TYPE variable/label DEFINITION NO. OF BYTES FOR NUMERIC VARIABLE DB/BYTE 1 DW/WORD 2 DD/DWORD 4 DF/FWORD 8 DT/TWORD 10 STRUC/STRUCT No> of bytes defined by structure NEAR label FFFFH FAR label FFFFH
  • 31. Free Powerpoint Templates SIZE OPERATOR  Returns the number of bytes taken up by a structure  Basically, LENGTH * TYPE  Coded As: SIZE variable  Example : BYTEA DB? ;Define one byte PART_TBL DW 10 DUP(?) ;Define 10 words MOV AX,TYPE BYTEA ;AX=0001H MOV AX,TYPE PART_TBL ;AX=0002H MOV CX,LENGTH PART_TBL ;CX=000AH(10) MOV DX,SIZE PART_TBL ;DX=0014H(20)
  • 33. Free Powerpoint Templates Execution of an Assembly Lang. Program Assembling Linking Execution Includes following steps:
  • 34. Free Powerpoint Templates ASSEMBLING, LINKING AND EXECUTING SOURCE CODE: The symbolic instructions that we code in assembly language. OBJECT CODE: We use an assembler program to translate the source program into machine code. EXECUTABLE MODULE: Finally, using a linker, execution of object code.
  • 36. Free Powerpoint Templates EDITING A PROGRAM After writing our program we will save it with .ASM extension. Although spacing is not important to the assembler, but a program is more readable if we keep data properly aligned. For this we can use any editor or word processing program that produces a standard unformatted ASCII file.
  • 37. Free Powerpoint Templates ASSEMBLING SOURCE PROGRAM Assembler converts source statements into machine code and displays error messages on the screen if any. Typical errors include a name that violates naming conventions, an operation i.e. spelled incorrectly. Optional output files from the assembly step are OBJECT(.OBJ), LISTING(.LST) and CROSS REFERNCE(.CRF or .SBR).
  • 38. Free Powerpoint Templates LINKING AN OBJECT PROGRAM When our program is free from errors next step is to link the object module produced by the assembler and that contains only machine code. Linker combines, if requested, more than one separately assembled module into one executable program. Generates an .EXE module and initializes it with special instructions to facilitate its subsequent loading for execution. Output files from this step are EXECUTABLE(.EX E), MAP(.MAP) and LIBRARY(.LIB)
  • 39. Free Powerpoint Templates EXECUTING A PROGRAM • Having assembled and linked a program, we can now execute it . • If the .EXE file is in the default drive, you could ask the loader to read it into memory for execution by typing • C:TASMBIN>PROG.EXE
  • 40. Free Powerpoint Templates STEPS TO CREATE AND RUN A PROGRAM Write the source code in a notepad file. Save it in tasmbin with .asm extension. Now , go to DOS prompt. Set the path to tasmbin. Write tlink filename.asm to link the file. Type filename to run the program. Give the required input.

Hinweis der Redaktion

  1. Name : refers to address of data item e.g. : COUNTER DB 0 which tells that whenever COUNTER word strikes, memory will “define Byte” with initial value 0 Label: refers to address of instruction, procedure, or segment e.g. : B30: ADD BL,25
  2. MOV : Internally, it cannot transfer data directly b/w source and destination that both resides in external memory. Ask mam that how it operates.
  3. Write down operations from other ppts