home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / dos_ency / 4 / fig4_15.asm < prev    next >
Encoding:
Assembly Source File  |  1988-08-11  |  384 b   |  15 lines

  1. COMSEG  SEGMENT BYTE PUBLIC 'CODE'
  2.         ASSUME  CS:COMSEG,DS:COMSEG,ES:COMSEG,SS:COMSEG
  3.         ORG     0100H
  4.  
  5. BEGIN:
  6.         JMP     START           ;skip over data fields
  7. ;Place your data fields here.
  8.  
  9. START:
  10. ;Place your program text here.
  11.         MOV     AX,4C00H        ;terminate (MS-DOS 2.0 or later only)
  12.         INT     21H
  13. COMSEG  ENDS
  14.         END     BEGIN
  15.