head	1.3;
access;
symbols;
locks; strict;
comment	@-- @;


1.3
date	99.01.21.06.35.11;	author ryu;	state Exp;
branches;
next	1.2;

1.2
date	99.01.14.10.17.32;	author ryu;	state Exp;
branches;
next	1.1;

1.1
date	99.01.13.07.14.48;	author ryu;	state Exp;
branches;
next	;


desc
@GPL
@


1.3
log
@wip
@
text
@#	$Id: common.spec,v 1.2 1999/01/14 10:17:32 ryu Exp ryu $

#	Copyright (C) 1999 Robert K. Yu
#	email: robert@@yu.org

#	This file is part of Autochar.

#	Autochar is free software; you can redistribute it and/or modify
#	it under the terms of the GNU General Public License as published by
#	the Free Software Foundation; either version 2, or (at your option)
#	any later version.

#	Autochar is distributed in the hope that it will be useful,
#	but WITHOUT ANY WARRANTY; without even the implied warranty of
#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#	GNU General Public License for more details.

#	You should have received a copy of the GNU General Public License
#	along with Autochar; see the file COPYING.  If not, write to the
#	Free Software Foundation, Inc., 59 Temple Place - Suite 330,
#	Boston, MA 02111-1307, USA.

#------	SETUP ------------------------------------------------------------------

$spice_type		= 'smartspice';
$spice_cmd		= 'Smartspice';

$techpath		= $ENV{'TECHDIR'} . '/include';
$spice_corner		= 'ttlh.sp';
$spice_include		= '.include ' . $ENV{'TECHDIR'} . '/lib/autochar.sp';
$scale_cload		= '1.0e-12';
$scale_delay		= 0.060e-9;

# 50% input to 50% output prop delay
# 10% output to 90% output transition delay
$input_prop_percent	= 0.5;
$output_prop_percent	= 0.5;
$start_trans_percent	= 0.1;
$end_trans_percent	= 0.9;
$start_slew_percent	= 0.1;
$end_slew_percent	= 0.9;

# 50% input to 10% output prop delay
# 10% output to 50% output transition delay
#$input_prop_percent	= 0.5;
#$output_prop_percent	= 0.1;
#$start_trans_percent	= 0.1;
#$end_trans_percent	= 0.5;
#$start_slew_percent	= 0.1;
#$end_slew_percent	= 0.9;

$lu_table_name		= 'UNKNOWN';
$timing_model		= 'non_linear';

@@slewrate		= &mult_list( $scale_delay, (0.66667, 1.33333, 2, 2.66667, 5.3333));
@@cload			= &mult_list( '5.0e-15', (0.5, 2, 5, 10, 15, 24));

1;
@


1.2
log
@Using /usr/bin/perl
@
text
@d1 1
a1 3
#! /usr/bin/perl

#	$Id: common.spec,v 1.1 1999/01/13 07:14:48 ryu Exp ryu $
d25 6
a30 4
$spice_cmd		= 'hspice';
$techpath		= '/tech/hspice/ibm7s/corners';
$spice_corner		= 'hspice.ttlh';
$spice_include		= '.include /home/roberty/autochar/lib.sp';
@


1.1
log
@Initial revision
@
text
@d1 1
a1 1
#! /usr/local/bin/perl
d3 1
a3 1
#	$Id$
@