00001 /* 00002 * version.h - simulator suite version definitions 00003 * 00004 * This file is a part of the SimpleScalar tool suite written by 00005 * Todd M. Austin as a part of the Multiscalar Research Project. 00006 * 00007 * The tool suite is currently maintained by Doug Burger and Todd M. Austin. 00008 * 00009 * Copyright (C) 1994, 1995, 1996, 1997, 1998 by Todd M. Austin 00010 * 00011 * This source file is distributed "as is" in the hope that it will be 00012 * useful. The tool set comes with no warranty, and no author or 00013 * distributor accepts any responsibility for the consequences of its 00014 * use. 00015 * 00016 * Everyone is granted permission to copy, modify and redistribute 00017 * this tool set under the following conditions: 00018 * 00019 * This source code is distributed for non-commercial use only. 00020 * Please contact the maintainer for restrictions applying to 00021 * commercial use. 00022 * 00023 * Permission is granted to anyone to make or distribute copies 00024 * of this source code, either as received or modified, in any 00025 * medium, provided that all copyright notices, permission and 00026 * nonwarranty notices are preserved, and that the distributor 00027 * grants the recipient permission for further redistribution as 00028 * permitted by this document. 00029 * 00030 * Permission is granted to distribute this file in compiled 00031 * or executable form under the same conditions that apply for 00032 * source code, provided that either: 00033 * 00034 * A. it is accompanied by the corresponding machine-readable 00035 * source code, 00036 * B. it is accompanied by a written offer, with no time limit, 00037 * to give anyone a machine-readable copy of the corresponding 00038 * source code in return for reimbursement of the cost of 00039 * distribution. This written offer must permit verbatim 00040 * duplication by anyone, or 00041 * C. it is distributed by someone who received only the 00042 * executable form, and is accompanied by a copy of the 00043 * written offer of source code that they received concurrently. 00044 * 00045 * In other words, you are welcome to use, share and improve this 00046 * source file. You are forbidden to forbid anyone else to use, share 00047 * and improve what you give them. 00048 * 00049 * INTERNET: dburger@cs.wisc.edu 00050 * US Mail: 1210 W. Dayton Street, Madison, WI 53706 00051 * 00052 * $Id: ssb_version.h,v 1.1.1.1 2006-01-31 16:35:51 afrodri Exp $ 00053 * 00054 * $Log: not supported by cvs2svn $ 00055 * Revision 1.1 2004/08/10 22:55:35 arodrig6 00056 * works, except for the speculative stuff, caches, and multiple procs 00057 * 00058 * Revision 1.1.1.1 2000/03/07 05:15:18 karu 00059 * this is the repository created for my own maintanence. 00060 * created when spec95 (lisp and compress worked). 00061 * compress still had the scanf("%i") problem 00062 * DIFF from the repository I am using alongwith ramdass on /projects 00063 * need to merge the two sometime :-) 00064 * 00065 * Revision 1.1.1.1 2000/02/25 21:02:53 karu 00066 * creating cvs repository for ss3-ppc 00067 * 00068 * Revision 1.4 1998/08/27 16:42:15 taustin 00069 * added target designator 00070 * updated version 00071 * 00072 * Revision 1.3 1997/03/11 01:35:16 taustin 00073 * update copyright 00074 * version updated for second release 00075 * 00076 * Revision 1.1 1996/12/05 18:50:23 taustin 00077 * Initial revision 00078 * 00079 * 00080 */ 00081 00082 #if defined(TARGET_PISA) 00083 #define VER_TARGET "PISA" 00084 #elif defined(TARGET_ALPHA) 00085 #define VER_TARGET "Alpha" 00086 #elif defined(TARGET_PPC) 00087 #define VER_TARGET "PPC" 00088 #else 00089 #error Cannot decode SimpleScalar target... 00090 #endif 00091 00092 #define VER_MAJOR 3 /* second release */ 00093 #define VER_MINOR 0 00094 00095 #define VER_UPDATE "September, 1998"