tb.cpp revision 12855
12568SN/A/*****************************************************************************
211192Sandreas.hansson@arm.com
38713Sandreas.hansson@arm.com  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
48713Sandreas.hansson@arm.com  more contributor license agreements.  See the NOTICE file distributed
58713Sandreas.hansson@arm.com  with this work for additional information regarding copyright ownership.
68713Sandreas.hansson@arm.com  Accellera licenses this file to you under the Apache License, Version 2.0
78713Sandreas.hansson@arm.com  (the "License"); you may not use this file except in compliance with the
88713Sandreas.hansson@arm.com  License.  You may obtain a copy of the License at
98713Sandreas.hansson@arm.com
108713Sandreas.hansson@arm.com    http://www.apache.org/licenses/LICENSE-2.0
118713Sandreas.hansson@arm.com
128713Sandreas.hansson@arm.com  Unless required by applicable law or agreed to in writing, software
138713Sandreas.hansson@arm.com  distributed under the License is distributed on an "AS IS" BASIS,
142568SN/A  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
152568SN/A  implied.  See the License for the specific language governing
162568SN/A  permissions and limitations under the License.
172568SN/A
182568SN/A *****************************************************************************/
192568SN/A
202568SN/A/*****************************************************************************
212568SN/A
222568SN/A  tb.cpp --
232568SN/A
242568SN/A  Original Author: Martin Janssen, Synopsys, Inc., 2002-02-15
252568SN/A
262568SN/A *****************************************************************************/
272568SN/A
282568SN/A/*****************************************************************************
292568SN/A
302568SN/A  MODIFICATION LOG - modifiers, enter your name, affiliation, date and
312568SN/A  changes you are making here.
322568SN/A
332568SN/A      Name, Affiliation, Date:
342568SN/A  Description of Modification:
352568SN/A
362568SN/A *****************************************************************************/
372568SN/A
382568SN/A#include "systemc.h"
392665Ssaidi@eecs.umich.edu#include "tb.h"
402665Ssaidi@eecs.umich.edu#include "define.h"
412665Ssaidi@eecs.umich.edu
428713Sandreas.hansson@arm.comvoid tb::entry()
432568SN/A{
442568SN/A  cout << "Begin Simulation" << endl;
452568SN/A
462982Sstever@eecs.umich.edu
4710405Sandreas.hansson@arm.com  cout << "End Simulation" << endl;
488713Sandreas.hansson@arm.com
492568SN/A  sc_stop();
502568SN/A
5111793Sbrandon.potter@amd.com}
5211793Sbrandon.potter@amd.com
532568SN/A