home *** CD-ROM | disk | FTP | other *** search
- /* Emacs style mode select -*- C++ -*- */
- /* ----------------------------------------------------------------------------- */
- /* */
- /* $Id:$ */
- /* */
- /* Copyright (C) 1993-1996 by id Software, Inc. */
- /* */
- /* This source is available for distribution and/or modification */
- /* only under the terms of the DOOM Source Code License as */
- /* published by id Software. All rights reserved. */
- /* */
- /* The source is distributed in the hope that it will be useful, */
- /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
- /* FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License */
- /* for more details. */
- /* */
- /* $Log:$ */
- /* */
- /* DESCRIPTION: */
- /* Main program, simply calls D_DoomMain high level loop. */
- /* */
- /* ----------------------------------------------------------------------------- */
-
- #ifdef ATARI
- #include <osbind.h>
- #endif
-
- #include "doomdef.h"
-
- #include "m_argv.h"
- #include "d_main.h"
- #include "i_version.h"
-
- int
- main
- ( int argc,
- char** argv )
- {
- #ifdef ATARI
- char InverseVideoOn[]={27,'H',27,'E',27,'p',0};
- char InverseVideoOff[]={27,'q',0};
- #endif
-
- myargc = argc;
- myargv = argv;
-
- #ifdef ATARI
- Cconws(InverseVideoOn);
- #endif
- printf(version_name);
- #ifdef ATARI
- Cconws(InverseVideoOff);
- #endif
- printf("\nbased on Linuxxdoom-1.10\n");
-
- D_DoomMain ();
-
- return 0;
- }
-