home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / dos / prg / midas / lang.inc < prev    next >
Text File  |  1994-08-06  |  755b  |  30 lines

  1. ;*    LANG.INC
  2. ;*
  3. ;* Language-dependent macros and conditional assembly
  4. ;*
  5. ;* Copyright 1994 Petteri Kangaslampi and Jarno Paananen
  6. ;*
  7. ;* This file is part of the MIDAS Sound System, and may only be
  8. ;* used, modified and distributed under the terms of the MIDAS
  9. ;* Sound System license, LICENSE.TXT. By continuing to use,
  10. ;* modify or distribute this file you indicate that you have
  11. ;* read the license and understand and accept it fully.
  12. ;*
  13.  
  14.  
  15. IFDEF __TP__
  16.     LANG EQU PASCAL
  17.     MODEL    TPASCAL
  18.     MACRO IDATASEG
  19.         CODESEG
  20.     ENDM
  21.         LOCALSEG EQU ss                 ; segment of local variables
  22. ELSE
  23.     MODEL    LARGE,C
  24.     LANG EQU C
  25.     MACRO IDATASEG
  26.         DATASEG
  27.     ENDM
  28.         LOCALSEG EQU ss                 ; segment of local variables
  29. ENDIF
  30.