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...
Learn a little bit about the new Pastebin.com on our help page. hide message
By Anonymous on the 9th of Feb 2010 10:28:39 PM Download | Raw | Embed | Report
  1. title Hello World Program (hello.asm)
  2.  
  3. ;This program displays "Hello, world!"
  4.  
  5. .model small
  6. .stack 100h
  7. .data
  8. message db "Hello, world!", 0dh,0ah,"$"
  9.  
  10. .code
  11. main proc
  12.     mov ax,@data
  13.     mov ds,ax
  14.    
  15.     mov ah,9
  16.     mov dx,offset message
  17.     int 21h
  18.    
  19.     mov ax,4C00h
  20.     int 21h
  21. main endp
  22. end main
Submit a correction or amendment below. Make A New Post
To highlight particular lines, prefix each line with @h@
Syntax highlighting:
Post expiration:
Post exposure:
Name / Title:
Email: