0% found this document useful (0 votes)
31 views1 page

X Show

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views1 page

X Show

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

Practical Assignment

Copy the assembly language program below to your computer. Then assemble,
link and run it as described in the next section

; Program: TEST.ASM
 

; AL Program to display the letter X on the screen

.model small

.stack 256

.code

start:

mov dl, 'X'

mov ah, 2h

int 21h

; All programs use the following 3 lines to terminate

mov ax, 4c00h

int 21h

end start

You might also like