Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Micro processing

(LAB)

Name: abdullah kamal


Reg. No: 6561
Semester : 6th
Batch-Fall (2012)

.model small
.stack 100h

; specify memory model


; 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

int 21h
main endp

end main

You might also like