home *** CD-ROM | disk | FTP | other *** search
/ Audio 4.94 - Over 11,000 Files / audio-11000.iso / msdos / sndbords / proaudio / pcmtlsrc / pcmtlsrc.arj / PCM.ARJ / MODEL.INC < prev    next >
Text File  |  1992-07-29  |  1KB  |  63 lines

  1. ;$Author:   BCRANE  $
  2. ;$Date:   29 Jul 1992 16:57:46  $
  3. ;$Header:   W:/sccs/sdkapp/model.inv   1.0   29 Jul 1992 16:57:46   BCRANE  $
  4. ;$Log:   W:/sccs/sdkapp/model.inv  $
  5. ;
  6. ;   Rev 1.0   29 Jul 1992 16:57:46   BCRANE
  7. ;Initial revision.
  8. ;$Logfile:   W:/sccs/sdkapp/model.inv  $
  9. ;$Modtimes$
  10. ;$Revision:   1.0  $
  11. ;$Workfile:   model.inc  $ 
  12.  
  13.  
  14.     Subttl MVSOUND    --  Audio Spectrum Sound Support Code
  15.         page    64,131
  16.  
  17. ;   /*\
  18. ;---|*|----====< MODEL.INC >====----
  19. ;---|*|
  20. ;---|*| This module holds the model directives which will be duplicated
  21. ;---|*| in each .asm module at compile time.
  22. ;---|*|
  23. ;---|*| This module depends upon an equate to be provided on the DOS
  24. ;---|*| command line. This equate, "MODELSIZE" holds the value of
  25. ;---|*|
  26. ;---|*| Copyright (c) 1991, Media Vision, Inc.    All Rights Reserved.
  27. ;---|*|
  28. ;   \*/
  29.  
  30. if MODELSIZE eq 0
  31.     .model    small,c     ;; tiny model
  32.     assume    ds:@code
  33.     assume    es:@code
  34. else
  35.   if MODELSIZE eq 1
  36.         .model  small,c
  37.   else
  38.     if MODELSIZE eq 2
  39.     .model    medium,c
  40.     else
  41.       if MODELSIZE eq 3
  42.     .model    compact,c
  43.       else
  44.     if MODELSIZE eq 4
  45.     .model    large,c
  46.     else
  47.       if MODELSIZE eq 5
  48.     .model    huge,c
  49.       else
  50.        .err Bad MODELSIZE specified (or not specified)!
  51.       endif
  52.         endif
  53.       endif
  54.     endif
  55.   endif
  56. endif
  57.  
  58. ;   /*\
  59. ;   |*| end of model.inc
  60. ;   \*/
  61.  
  62.  
  63.