MainEntry.h 1.32 KB
//=========================================================
// Copyright 2001 VAutomation Inc. Nashua NH USA. All rights reserved.
// This software is provided under license and contains proprietary   
// and confidential material which is the property of VAutomation Inc.
// HTTP://www.vautomation.com											
//==========================================================
//
//  Class Name:	CInterruptControllerInterface
//  Author:  
//  Company:  VAutomation An Arc Cores Company
//  Date created:  2/01/2001 at 9:46
//
//
//==========================================================
//
//  Notes: This file should not modified. It is designed to 
//  compile under a wide range of compilers and any addtional
//  dependencies may defeat the purpose of its structure.
//
//
//
//==========================================================
// MainEntry.h

#ifndef __MAIN_ENTRY_FUNCTIONS__
#define __MAIN_ENTRY_FUNCTIONS__

//These functions are used to create and destroy hardware that is used during
//simulation. An example of these functions can  found in BFM test code, where
//hardware objects, such as a BVCI interface are created and Destroyed.
//
//NOTE: If this code is running on a real processor the the implimentation functions
//within the function will most likely do very little. 
bool HardwareCreate();
bool HardwareDestroy();


#endif