tb.cpp revision 12855
13560SN/A/*****************************************************************************
23560SN/A
33560SN/A  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
43560SN/A  more contributor license agreements.  See the NOTICE file distributed
53560SN/A  with this work for additional information regarding copyright ownership.
63560SN/A  Accellera licenses this file to you under the Apache License, Version 2.0
73560SN/A  (the "License"); you may not use this file except in compliance with the
83560SN/A  License.  You may obtain a copy of the License at
93560SN/A
103560SN/A    http://www.apache.org/licenses/LICENSE-2.0
113560SN/A
123560SN/A  Unless required by applicable law or agreed to in writing, software
133560SN/A  distributed under the License is distributed on an "AS IS" BASIS,
143560SN/A  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
153560SN/A  implied.  See the License for the specific language governing
163560SN/A  permissions and limitations under the License.
173560SN/A
183560SN/A *****************************************************************************/
193560SN/A
203560SN/A/*****************************************************************************
213560SN/A
223560SN/A  tb.cpp --
233560SN/A
243560SN/A  Original Author: Martin Janssen, Synopsys, Inc., 2002-02-15
253560SN/A
263560SN/A *****************************************************************************/
273560SN/A
283560SN/A/*****************************************************************************
293560SN/A
303560SN/A  MODIFICATION LOG - modifiers, enter your name, affiliation, date and
313560SN/A  changes you are making here.
323560SN/A
333560SN/A      Name, Affiliation, Date:
343560SN/A  Description of Modification:
353560SN/A
363560SN/A *****************************************************************************/
373560SN/A
383560SN/A#include "systemc.h"
393560SN/A#include "tb.h"
403560SN/A#include "define.h"
413565Sgblack@eecs.umich.edu
423560SN/Avoid tb::entry()
433560SN/A{
443560SN/A  cout << "Begin Simulation" << endl;
453560SN/A
463560SN/A
473560SN/A  cout << "End Simulation" << endl;
483560SN/A
493560SN/A  sc_stop();
503560SN/A
513560SN/A}
523560SN/A
533560SN/A