*** empty log message ***
[deliverable/binutils-gdb.git] / sim / common / hw-base.h
CommitLineData
c906108c
SS
1/* 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
27struct 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
39void hw_finish
40(struct hw *me);
41
42int hw_finished_p
43(struct hw *me);
44
45
46/* Delete the entire device */
47
48void hw_delete
49(struct hw *me);
50
51
52/* Override device methods */
53
54typedef void (hw_delete_callback)
55 (struct hw *me);
56
ce13044d 57extern void set_hw_delete(struct hw* hw, hw_delete_callback method);
c906108c
SS
58
59
60/* ALLOC */
61
62extern void create_hw_alloc_data
63(struct hw *hw);
64extern void delete_hw_alloc_data
65(struct hw *hw);
66
67
68/* PORTS */
69
70extern void create_hw_port_data
71(struct hw *hw);
72extern void delete_hw_port_data
73(struct hw *hw);
74
75
76/* PROPERTIES */
77
78extern void create_hw_property_data
79(struct hw *hw);
80extern void delete_hw_property_data
81(struct hw *hw);
82
83
84/* EVENTS */
85
86extern void create_hw_event_data
87(struct hw *hw);
88extern void delete_hw_event_data
89(struct hw *hw);
90
91
92/* HANDLES */
93
94extern void create_hw_handle_data
95(struct hw *hw);
96extern void delete_hw_handle_data
97(struct hw *hw);
98
99
100/* INSTANCES */
101
102extern void create_hw_instance_data
103(struct hw *hw);
104extern void delete_hw_instance_data
105(struct hw *hw);
106
107
108#endif
This page took 0.143383 seconds and 4 git commands to generate.