Home arrow 8086 Assembly Programs arrow View ASCII character set Friday, 05 December 2008
Home
- - - - - - -
Contact me!
My Blog!
- - - - - - -
- - - - - - -
8086 Assembly Programs
Graphics
Java Servlets
Prolog
VHDL
- - - - - - -
Ubuntu Linux
- - - - - - -
Links
Statistics
Visitors: 43308

   
View ASCII character set
Written by Rohit   
Monday, 10 April 2006
  1. ;Program to print ASCII characters on the screen
  2.  
  3. .model small
  4. .stack
  5. .data
  6. .code
  7.  
  8. main proc
  9.      mov dl, 00h
  10. lop: mov ah, 02h
  11.      int 21h
  12.      inc dl
  13.      jnz lop
  14.      mov ax,4c00h
  15.      int 21h
  16. main endp
  17. end main
 
< Prev

 

Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 2.5 License.