/************************************************************ ** ** COPYRIGHT (C) 1988 UNIVERSITY OF PITTSBURGH ** COPYRIGHT (C) 1988-1989 Alan R. Martello ** ALL RIGHTS RESERVED ** ** This software is distributed on an as-is basis ** with no warranty implied or intended. No author ** or distributor takes responsibility to anyone ** regarding its use of or suitability. ** ** The software may be distributed and modified ** freely for academic and other non-commercial ** use but may NOT be utilized or included in whole ** or part within any commercial product. ** ** This copyright notice must remain on all copies ** and modified versions of this software. ** ************************************************************/ /* ** Global Include File ** ** VHDL Simulator and Parser ** Copyright (C) 1988, University of Pittsburgh ** */ /* ** File: include/version.h ** ** Functions: N/A ** ** Description: ** ** ** Author: Lyn Ann Mears (LAM) - University of Pittsburgh, EE Dept. ** Modified by: Alan R. Martello (ARM) - University of Pittsburgh, EE Dept. ** ** Revision History ** ---------------- ** Date Initials Description of change ** ** 08/30/88 ARM Created this file to centralize version numbers. ** ** ** Some code taken and adapted from RSIM work performed by Chris Terman. ** */ /* ** define the program version number ** (see vsim/VERSION_HISTORY for more info) ** ** the MAJOR_VERSION_NUM is incremented for each major release ** the MINOR_VERSION_NUM is incremented for bug fixes and has the ** following meaning: ** 0 => the initial major release ** 1 - 99 => bug fixes to the initial major release ** 100 => the next alpha release ** 101 - 199 => bug fixes to the next alpha release ** 200 => the new beta release ** 200 - 299 => bug fixes to the new beta release ** ** an alpha release is defined as preliminary, early testing, for internal use only ** a beta release is defined as stable, believed reliable, limited distribution */ #define MAJOR_VERSION_NUM 2 #define MINOR_VERSION_NUM 227