OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [sim/] [common/] [hw-base.h] - Blame information for rev 1771

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 578 markom
/*  This file is part of the program psim.
2
 
3
    Copyright (C) 1994-1998, Andrew Cagney <cagney@highland.com.au>
4
 
5
    This program is free software; you can redistribute it and/or modify
6
    it under the terms of the GNU General Public License as published by
7
    the Free Software Foundation; either version 2 of the License, or
8
    (at your option) any later version.
9
 
10
    This program is distributed in the hope that it will be useful,
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
    GNU General Public License for more details.
14
 
15
    You should have received a copy of the GNU General Public License
16
    along with this program; if not, write to the Free Software
17
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
 
19
    */
20
 
21
 
22
#ifndef HW_BASE
23
#define HW_BASE
24
 
25
/* Create a primative device */
26
 
27
struct hw *hw_create
28
(struct sim_state *sd,
29
 struct hw *parent,
30
 const char *family,
31
 const char *name,
32
 const char *unit,
33
 const char *args);
34
 
35
 
36
/* Complete the creation of that device (finish overrides methods
37
   using the set_hw_* operations below) */
38
 
39
void hw_finish
40
(struct hw *me);
41
 
42
int hw_finished_p
43
(struct hw *me);
44
 
45
 
46
/* Delete the entire device */
47
 
48
void hw_delete
49
(struct hw *me);
50
 
51
 
52
/* Override device methods */
53
 
54
typedef void (hw_delete_callback)
55
     (struct hw *me);
56
 
57
extern void set_hw_delete(struct hw* hw, hw_delete_callback method);
58
 
59
 
60
/* ALLOC */
61
 
62
extern void create_hw_alloc_data
63
(struct hw *hw);
64
extern void delete_hw_alloc_data
65
(struct hw *hw);
66
 
67
 
68
/* PORTS */
69
 
70
extern void create_hw_port_data
71
(struct hw *hw);
72
extern void delete_hw_port_data
73
(struct hw *hw);
74
 
75
 
76
/* PROPERTIES */
77
 
78
extern void create_hw_property_data
79
(struct hw *hw);
80
extern void delete_hw_property_data
81
(struct hw *hw);
82
 
83
 
84
/* EVENTS */
85
 
86
extern void create_hw_event_data
87
(struct hw *hw);
88
extern void delete_hw_event_data
89
(struct hw *hw);
90
 
91
 
92
/* HANDLES */
93
 
94
extern void create_hw_handle_data
95
(struct hw *hw);
96
extern void delete_hw_handle_data
97
(struct hw *hw);
98
 
99
 
100
/* INSTANCES */
101
 
102
extern void create_hw_instance_data
103
(struct hw *hw);
104
extern void delete_hw_instance_data
105
(struct hw *hw);
106
 
107
 
108
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.