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 >
Wrap
Text File
|
1992-07-29
|
1KB
|
63 lines
;$Author: BCRANE $
;$Date: 29 Jul 1992 16:57:46 $
;$Header: W:/sccs/sdkapp/model.inv 1.0 29 Jul 1992 16:57:46 BCRANE $
;$Log: W:/sccs/sdkapp/model.inv $
;
; Rev 1.0 29 Jul 1992 16:57:46 BCRANE
;Initial revision.
;$Logfile: W:/sccs/sdkapp/model.inv $
;$Modtimes$
;$Revision: 1.0 $
;$Workfile: model.inc $
Subttl MVSOUND -- Audio Spectrum Sound Support Code
page 64,131
; /*\
;---|*|----====< MODEL.INC >====----
;---|*|
;---|*| This module holds the model directives which will be duplicated
;---|*| in each .asm module at compile time.
;---|*|
;---|*| This module depends upon an equate to be provided on the DOS
;---|*| command line. This equate, "MODELSIZE" holds the value of
;---|*|
;---|*| Copyright (c) 1991, Media Vision, Inc. All Rights Reserved.
;---|*|
; \*/
if MODELSIZE eq 0
.model small,c ;; tiny model
assume ds:@code
assume es:@code
else
if MODELSIZE eq 1
.model small,c
else
if MODELSIZE eq 2
.model medium,c
else
if MODELSIZE eq 3
.model compact,c
else
if MODELSIZE eq 4
.model large,c
else
if MODELSIZE eq 5
.model huge,c
else
.err Bad MODELSIZE specified (or not specified)!
endif
endif
endif
endif
endif
endif
; /*\
; |*| end of model.inc
; \*/