common.h revision 12855
12086SN/A/*****************************************************************************
22086SN/A
32086SN/A  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
42086SN/A  more contributor license agreements.  See the NOTICE file distributed
52086SN/A  with this work for additional information regarding copyright ownership.
62086SN/A  Accellera licenses this file to you under the Apache License, Version 2.0
72086SN/A  (the "License"); you may not use this file except in compliance with the
82086SN/A  License.  You may obtain a copy of the License at
92086SN/A
102086SN/A    http://www.apache.org/licenses/LICENSE-2.0
112086SN/A
122086SN/A  Unless required by applicable law or agreed to in writing, software
132086SN/A  distributed under the License is distributed on an "AS IS" BASIS,
142086SN/A  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
152086SN/A  implied.  See the License for the specific language governing
162086SN/A  permissions and limitations under the License.
172086SN/A
182086SN/A *****************************************************************************/
192086SN/A
202086SN/A/*****************************************************************************
212086SN/A
222086SN/A  common.h --
232086SN/A
242086SN/A  Original Author: Martin Janssen, Synopsys, Inc., 2002-02-15
252086SN/A
262086SN/A *****************************************************************************/
272086SN/A
282665Ssaidi@eecs.umich.edu/*****************************************************************************
292665Ssaidi@eecs.umich.edu
302665Ssaidi@eecs.umich.edu  MODIFICATION LOG - modifiers, enter your name, affiliation, date and
312086SN/A  changes you are making here.
324202Sbinkertn@umich.edu
332086SN/A      Name, Affiliation, Date:
344202Sbinkertn@umich.edu  Description of Modification:
354202Sbinkertn@umich.edu
364202Sbinkertn@umich.edu *****************************************************************************/
374202Sbinkertn@umich.edu
384202Sbinkertn@umich.edu#ifndef COMMON_H
394202Sbinkertn@umich.edu#define COMMON_H
404997Sgblack@eecs.umich.edu
414202Sbinkertn@umich.edu#include "systemc.h"
424202Sbinkertn@umich.edu
434997Sgblack@eecs.umich.edutypedef sc_bv<4> bool_vector4;
444826Ssaidi@eecs.umich.edutypedef sc_bv<6> bool_vector6;
452086SN/Atypedef sc_bv<7> bool_vector7;
464997Sgblack@eecs.umich.edu
475800Snate@binkert.orgtypedef sc_signal<bool_vector4> signal_bool_vector4;
484997Sgblack@eecs.umich.edutypedef sc_signal<bool_vector6> signal_bool_vector6;
494202Sbinkertn@umich.edutypedef sc_signal<bool_vector7> signal_bool_vector7;
504486Sbinkertn@umich.edu
515647Sgblack@eecs.umich.edu#endif
524486Sbinkertn@umich.edu