0% found this document useful (0 votes)
9 views

Micro Processing (LAB) : Name: Abdullah Kamal Reg. No: 6561 Semester: 6 Batch-Fall (2012)

This document contains a microprocessing lab report for a student named Abdullah Kamal in the 6th semester of the Fall 2012 batch. The report contains assembly language code that displays the letter 'A' on the screen and then exits the program.

Uploaded by

Faizan Ashraf
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

Micro Processing (LAB) : Name: Abdullah Kamal Reg. No: 6561 Semester: 6 Batch-Fall (2012)

This document contains a microprocessing lab report for a student named Abdullah Kamal in the 6th semester of the Fall 2012 batch. The report contains assembly language code that displays the letter 'A' on the screen and then exits the program.

Uploaded by

Faizan Ashraf
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 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