home *** CD-ROM | disk | FTP | other *** search
/ Megazine / Megazine-1.iso / PROGRAMA / ASSEMB / TEDITOR / SAMPLE.ASM < prev    next >
Encoding:
Assembly Source File  |  1997-06-05  |  323 b   |  23 lines

  1. .model small
  2.  
  3. .code
  4. org 100h
  5.  
  6. Start:
  7.       Jmp       Foo
  8.       
  9. Message db "I love TED !", 13, 10, "$"
  10.  
  11. Foo:
  12.       push      cs
  13.       pop       ds
  14.       
  15.       mov       dx,offset Message
  16.       mov       ah,09
  17.       int       21h
  18.       
  19.       mov       ax,4C00h
  20.       int       21h
  21.       
  22. end   Start
  23.