mpi lab task

3
Micro processing (LAB) Name: abdullah kamal

description

lab work

Transcript of mpi lab task

Page 1: mpi lab task

Micro processing (LAB)

Name: abdullah kamalReg. No: 6561Semester : 6th

Batch-Fall (2012)

Page 2: mpi lab task

.model small ; specify memory model

.stack 100h ; specify size of stack

.code ; start of the code segment

main proc ; start of the first procedure

mov ah,02h ; display a single character

mov dl,'A' ; transfer A to register dl

int 21h ; DOS routine interrupt

mov ah,4ch ; exit DOS function

Page 3: mpi lab task

int 21h

main endp

end main