4 ISA-PnP -- A Plug And Play ISA software layer for AmigaOS.
5 Copyright (C) 2001 Martin Blom <martin@blom.org>
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with this library; if not, write to the
19 Free Software Foundation, Inc., 59 Temple Place - Suite 330, Cambridge,
23 #ifndef ISA_PNP_controller_h
24 #define ISA_PNP_controller_h
26 #include "CompilerSpecific.h"
28 #include <exec/types.h>
33 ISAC_SetMasterInt( REG( d0
, BOOL on
),
34 REG( a6
, struct ISAPNPBase
* res
) );
37 ISAC_GetMasterInt( REG( a6
, struct ISAPNPBase
* res
) );
41 ISAC_SetWaitState( REG( d0
, BOOL on
),
42 REG( a6
, struct ISAPNPBase
* res
) );
46 ISAC_GetWaitState( REG( a6
, struct ISAPNPBase
* res
) );
50 ISAC_GetInterruptStatus( REG( d0
, UBYTE interrupt
),
51 REG( a6
, struct ISAPNPBase
* res
) );
54 ISAC_GetRegByte( REG( d0
, UWORD reg
),
55 REG( a6
, struct ISAPNPBase
* res
) );
59 ISAC_SetRegByte( REG( d0
, UWORD reg
),
60 REG( d1
, UBYTE value
),
61 REG( a6
, struct ISAPNPBase
* res
) );
65 ISAC_GetRegWord( REG( d0
, UWORD reg
),
66 REG( a6
, struct ISAPNPBase
* res
) );
70 ISAC_SetRegWord( REG( d0
, UWORD reg
),
71 REG( d1
, UWORD value
),
72 REG( a6
, struct ISAPNPBase
* res
) );
75 ISAC_GetRegLong( REG( d0
, UWORD reg
),
76 REG( a6
, struct ISAPNPBase
* res
) );
80 ISAC_SetRegLong( REG( d0
, UWORD reg
),
81 REG( d1
, ULONG value
),
82 REG( a6
, struct ISAPNPBase
* res
) );
86 ISAC_ReadByte( REG( d0
, ULONG address
),
87 REG( a6
, struct ISAPNPBase
* res
) );
91 ISAC_WriteByte( REG( d0
, ULONG address
),
92 REG( d1
, UBYTE value
),
93 REG( a6
, struct ISAPNPBase
* res
) );
97 ISAC_ReadWord( REG( d0
, ULONG address
),
98 REG( a6
, struct ISAPNPBase
* res
) );
102 ISAC_WriteWord( REG( d0
, ULONG address
),
103 REG( d1
, UWORD value
),
104 REG( a6
, struct ISAPNPBase
* res
) );
108 ISAC_ReadLong( REG( d0
, ULONG address
),
109 REG( a6
, struct ISAPNPBase
* res
) );
113 ISAC_WriteLong( REG( d0
, ULONG address
),
114 REG( d1
, ULONG value
),
115 REG( a6
, struct ISAPNPBase
* res
) );
118 #endif /* ISA_PNP_controller_h */