home *** CD-ROM | disk | FTP | other *** search
- { ------------------------------------------------------------------------ }
- { @@ Source Documentation *** TP6 Version *** }
- { }
- { Copyright (c) Creative Technology Pte Ltd, 1991. All rights reserved. }
- { }
- { TITLE : SBKVER.PAS }
- { }
- { DESCRIPTION : }
- { This program helps to show your Sound Blaster Developer Kit }
- { version number. }
- { }
- { To check your library version compile this program with following }
- { command: }
- { }
- { TPC sbkver }
- { }
- { ------------------------------------------------------------------------ }
-
- program sbkver;
-
- { Include the SBC Unit, and any other units needed }
- uses sbc_tp6;
-
- begin
-
- writeln('Developer Kit for Sound Blaster Series');
- writeln('Turbo Pascal version');
- writeln;
- writeln('Version : ',sbclib_version_major + sbclib_version_minor/100:2:2);
- end.
-