Exe Format
Exe Format
guage
Lab Manual
Topic: Program segment directives, Memory model code segment, Data segment, Stack
segment, Data variable, Program segment structure, the template of an EXE-format program
Course Instructor:
Lab Instructor:
Session:
Basic Structure
1. Data Segment: This section is used to define and store data. Variables are
declared here.
2. Code Segment: This section contains the instructions that the CPU executes.
Example Program
Below is a simple program in assembly language using Emu8086 that adds two
numbers and stores the result in a variable.
.model small
.stack 100h
.data
num1 db 5 ; Define num1 and assign it the value 5
num2 db 3 ; Define num2 and assign it the value 3
result db ? ; Define result with an undefined initial value
.code
main proc
mov ax, @data
mov ds, ax ; Initialize data segment
main endp
end main
Explanation of the Example Program
2. Data Segment
o .data: Begins the data segment.
o num1 db 5: Defines a byte-sized variable num1 with an initial value of
5.
o num2 db 3: Defines a byte-sized variable num2 with an initial value of
3.
o result db ?: Defines a byte-sized variable result with an undefined ini-
tial value (?).
3. Code Segment
o .code: Begins the code segment.
o main proc: Defines the start of the main procedure.
o mov ax, @data: Loads the address of the data segment into the AX
register.
o mov ds, ax: Initializes the DS register with the address of the data seg-
ment.
o mov al, num1: Loads the value of num1 into the AL register.
o add al, num2: Adds the value of num2 to the AL register.
o mov result, al: Stores the value of the AL register (which now contains
the sum) into the result variable.
o mov ax, 4C00h: Prepares to terminate the program by moving the ter-
minate code into AX.
o int 21h: Calls DOS interrupt 21h to terminate the program.
4. End of Program
o main endp: Marks the end of the main procedure.
o end main: Indicates the end of the program and specifies the entry
point.
The .MODEL directive specifies the memory model for an assembler module
that uses the simplified segment directives. The .MODEL directive must
precede .CODE, .DATA, and .STACK. The format of the .MODEL directive is:
TINY One segment. Thus both program code and data together must
fit within the same 64 Kb segment. Both code and data are near.
SMALL Program code must fit within a single 64 Kb segment, and data
must fit within a separate 64 Kb segment. Both code and data
are near.
COMPACT One code-segment. More than one data-segment. Thus data may
be greater than 64K.
All program models but TINY result in the creation of exe-format programs. The
TINY model creates com-format programs.
Stack Segment
STACK_SEG defines the stack segment and controls the size of the stack. For ex-
ample,
Code Segment
CODE_SEG marks the start of your program’s code segment. It contains exe-
cutable instruction.
Main PROC
Main endp
CODE_SEG ends
Data Segments
DATA_SEG marks the start of your data segment. You should place your memory
variables in this segment. For example,
DATA VARIABLES
symbolic addresses of data items (offsets in the data segment)
Defined by directives DB, DW, DD, DQ
Format for data definition
]name] Dx expression
Coal DB “this is my first program”
Directive Dx:
determines the variable type (according to the letter x)
allocates the space in memory (one or more bytes)
Initializes the contents of the memory locations (does not Initialize, if
the expression is?)
Expression:
can be uninitialized : ?
Can be assigned a constant: such as 25, 21.
Example:
DATAZ DB 21
Declare variables
Write code
Example
Program for the 8086 that prints your name using DOS interrupts:
.model small
.stack 100h
.data
nam db 'Name: John Doe', 13, 10, '$' ; Define name string with carriage return and line feed
.code
main proc
mov ax, @data
mov ds, ax ; Initialize data segment
; Print name
lea dx, nam ; Load address of name into DX
mov ah, 09h ; DOS interrupt function 09h (print string)
int 21h ; Call DOS interrupt
main endp
end main
Explanation
1. Data Segment
o .data: Begins the data segment.
o name db 'Name: John Doe', 13, 10, '$': Defines the string for the name
with a carriage return (13) and line feed (10) to move to the
next line, terminated by $.
2. Code Segment
o .code: Begins the code segment.
o main proc: Defines the start of the main procedure.
o mov ax, @data: Loads the address of the data segment into the
AX register.
o mov ds, ax: Initializes the DS register with the address of the
data segment.
4. Terminate Program
o mov ax, 4C00h: Prepares to terminate the program by moving
the terminate code into AX.
o int 21h: Calls DOS interrupt 21h to terminate the program.
Important Note
Carriage Return (CR): The ASCII value for CR is 13 (0x0D in hexadecimal). It
moves the cursor to the beginning of the current line without advancing to the next
line. It’s like pressing the "Enter" key but without moving down to a new line.
Line Feed (LF): The ASCII value for LF is 10 (0x0A in hexadecimal). It moves
the cursor down to the next line without returning to the beginning of the line. It's
like pressing the "down arrow" key.
LAB TASKS
Task # 1:
Write an assembly language program using 8086 syntax.
1. Print your Name
2. Print your Registration ID
3. Print your section
4. Output in following format:
Name: xyz
ID: 1234
Section: B
Solution
.model small
.stack 100h
.data
nam db 'Name: John Doe', 13, 10, '$' ; Define name string with carriage return and line feed
id db 'ID: 1234', 13, 10, '$' ; Define ID string with carriage return and line feed
section db 'Section: B', 13, 10, '$' ; Define section string with carriage return and line feed
.code
main proc
mov ax, @data
mov ds, ax ; Initialize data segment
; Print name
lea dx, nam ; Load address of name into DX
mov ah, 09h ; DOS interrupt function 09h (print string)
int 21h ; Call DOS interrupt
; Print ID
lea dx, id ; Load address of ID into DX
mov ah, 09h ; DOS interrupt function 09h (print string)
int 21h ; Call DOS interrupt
; Print section
lea dx, section ; Load address of section into DX
mov ah, 09h ; DOS interrupt function 09h (print string)
int 21h ; Call DOS interrupt
main endp
end main
Explanation
1. Data Segment
o .data: Begins the data segment.
o name db 'Name: John Doe', 13, 10, '$': Defines the string for the name with a
carriage return (13) and line feed (10) to move to the next line, termi-
nated by $.
o id db 'ID: 1234', 13, 10, '$': Defines the string for the ID.
o section db 'Section: B', 13, 10, '$': Defines the string for the section.
2. Code Segment
o .code: Begins the code segment.
o main proc: Defines the start of the main procedure.
o mov ax, @data: Loads the address of the data segment into the AX regis-
ter.
o mov ds, ax: Initializes the DS register with the address of the data seg-
ment.
3. Printing Strings
o lea dx, name: Loads the effective address of the name string into the DX
register.
o mov ah, 09h: Sets AH to 09h to select the DOS interrupt function for
printing a string.
o int 21h: Calls DOS interrupt 21h to print the string.
o The same steps are repeated for the id and section strings.
4. Terminate Program
o mov ax, 4C00h: Prepares to terminate the program by moving the termi-
nate code into AX.
o int 21h: Calls DOS interrupt 21h to terminate the program.