home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / Asm / ASM.ZIP / HELLO.ASM < prev    next >
Encoding:
Assembly Source File  |  1990-01-22  |  277 b   |  8 lines

  1.     mov    ah, 09h         ;output string function.
  2.     mov    dx, offset msg        ;address our message buffer.
  3.     int    21h            ;call DOS to write the message.
  4.     mov    ah, 00h         ;terminate program function.
  5.     int    21h            ;call DOS to terminate.
  6. msg    db    'PIRANHA INTERNATIONAL.$';the message to write.
  7.  
  8.