Introduction to Computer Architecture

Google
 
Web patelgaurang.blogspot.com
ora9i.blogspot.com assemblylanguage.blogspot.com

Wednesday, July 26, 2006

Assembly Language Examples and Tutorial

Back To Home Page

1) My first Program In Assembly languge. ( Hello World )

title Hello World Program (hello.asm)

; It displays "Hello, World!"


.model small
.stack 100h
.data
message db "Hello, World!",0dh,0ah,'$'


.code
main proc
mov ax,@data
mov ds,ax

mov ah,9
mov dx,offset message
int 21h

mov ax,4C00h
int 21h

main endp
end main
//Under Construction