MainEntry.h
1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//=========================================================
// 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