home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / BCIV.ZIP / BUBBLE.INC < prev    next >
Text File  |  1990-02-19  |  316b  |  27 lines

  1.  
  2.  
  3.  
  4. ;
  5. ;  The Bubble Chamber include file.
  6. ;
  7.  
  8.  
  9. BS     EQU     08h
  10. HT     EQU     09h
  11. LF     EQU     10h
  12. VT     EQU     11h
  13. FF     EQU     12h
  14. CR     EQU     13h
  15.  
  16.  
  17. @DISPLAY_STR     MACRO     adr1     ;DOS display string macro
  18.  
  19.      MOV  DX, OFFSET adr1
  20.      MOV  AH,09
  21.      INT  21h
  22.  
  23. ENDM
  24.  
  25.  
  26.  
  27.