tb.cpp revision 12855
15245Sgblack@eecs.umich.edu/*****************************************************************************
28948Sandreas.hansson@arm.com
38948Sandreas.hansson@arm.com  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
48948Sandreas.hansson@arm.com  more contributor license agreements.  See the NOTICE file distributed
58948Sandreas.hansson@arm.com  with this work for additional information regarding copyright ownership.
68948Sandreas.hansson@arm.com  Accellera licenses this file to you under the Apache License, Version 2.0
78948Sandreas.hansson@arm.com  (the "License"); you may not use this file except in compliance with the
88948Sandreas.hansson@arm.com  License.  You may obtain a copy of the License at
98948Sandreas.hansson@arm.com
108948Sandreas.hansson@arm.com    http://www.apache.org/licenses/LICENSE-2.0
118948Sandreas.hansson@arm.com
128948Sandreas.hansson@arm.com  Unless required by applicable law or agreed to in writing, software
138948Sandreas.hansson@arm.com  distributed under the License is distributed on an "AS IS" BASIS,
145245Sgblack@eecs.umich.edu  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
155245Sgblack@eecs.umich.edu  implied.  See the License for the specific language governing
165245Sgblack@eecs.umich.edu  permissions and limitations under the License.
177087Snate@binkert.org
187087Snate@binkert.org *****************************************************************************/
197087Snate@binkert.org
207087Snate@binkert.org/*****************************************************************************
217087Snate@binkert.org
227087Snate@binkert.org  tb.cpp --
237087Snate@binkert.org
247087Snate@binkert.org  Original Author: Martin Janssen, Synopsys, Inc., 2002-02-15
255245Sgblack@eecs.umich.edu
267087Snate@binkert.org *****************************************************************************/
277087Snate@binkert.org
287087Snate@binkert.org/*****************************************************************************
297087Snate@binkert.org
307087Snate@binkert.org  MODIFICATION LOG - modifiers, enter your name, affiliation, date and
317087Snate@binkert.org  changes you are making here.
327087Snate@binkert.org
337087Snate@binkert.org      Name, Affiliation, Date:
345245Sgblack@eecs.umich.edu  Description of Modification:
357087Snate@binkert.org
365245Sgblack@eecs.umich.edu *****************************************************************************/
375245Sgblack@eecs.umich.edu
385245Sgblack@eecs.umich.edu#include "systemc.h"
395245Sgblack@eecs.umich.edu#include "tb.h"
405245Sgblack@eecs.umich.edu#include "define.h"
415245Sgblack@eecs.umich.edu
425245Sgblack@eecs.umich.eduvoid tb::entry()
435245Sgblack@eecs.umich.edu{
445245Sgblack@eecs.umich.edu  cout << "Begin Simulation" << endl;
455245Sgblack@eecs.umich.edu
465245Sgblack@eecs.umich.edu
475245Sgblack@eecs.umich.edu  cout << "End Simulation" << endl;
485245Sgblack@eecs.umich.edu
495245Sgblack@eecs.umich.edu  sc_stop();
505245Sgblack@eecs.umich.edu
515245Sgblack@eecs.umich.edu}
525245Sgblack@eecs.umich.edu
535245Sgblack@eecs.umich.edu