Recent Posts
None | 5 sec ago
None | 35 sec ago
None | 40 sec ago
None | 56 sec ago
VisualBasic | 1 min ago
XML | 1 min ago
None | 1 min ago
None | 1 min ago
None | 1 min ago
None | 1 min ago
Sitereport
Find cool info about any domain on the internet?
visit sitereport
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By Anonymous on the 9th of Feb 2010 10:28:39 PM
Download |
Raw |
Embed |
Report
title Hello World Program (hello.asm)
;This program 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
Submit a correction or amendment below.
Make A New Post