#ifndef __VME_H__
 
#define __VME_H__
 
 
 
//------------------------------------------------------------------------------------------
 
// vme.h - some constants about VME address modifiers in a more readable kind
 
//
 
// (c) 1999-2004 ARW Elektronik
 
//
 
// this source code is published under GPL (Open Source). You can use, redistrubute and 
 
// modify it unless this header   is not modified or deleted. No warranty is given that 
 
// this software will work like expected.
 
// This product is not authorized for use as critical component in life support systems
 
// wihout the express written approval of ARW Elektronik Germany.
 
//
 
// Please announce changes and hints to ARW Elektronik
 
// 
 
//
 
// $Log: Vme.h,v $
 
// Revision 1.3  2004/07/24 07:07:26  klaus
 
// Update copyright to 2004
 
//
 
// Revision 1.2  2003/11/15 19:12:51  klaus
 
// Update copyright to 2003
 
//
 
// Revision 1.1.1.1  2003/11/14 23:16:33  klaus
 
// First put into repository
 
//
 
// Revision 1.3  2002/10/27 16:17:48  klaus
 
// Typing bug fixed caused at log addition
 
//
 
// Revision 1.2  2002/10/27 16:11:03  klaus
 
// Added CVS log into header
 
//
 
// what                                                              who    when
 
// finished first release to use with the PCIVME interface of ARW    AR     22.03.1999
 
//
 
 
 
typedef WORD ADDRESS_MODIFIER;
 
 
 
#define Std_Sup_Data        (ADDRESS_MODIFIER)0x3d
 
#define Std_Sup_Prog        (ADDRESS_MODIFIER)0x3e
 
#define Std_NoPriv_Data     (ADDRESS_MODIFIER)0x39
 
#define Std_NoPriv_Prog     (ADDRESS_MODIFIER)0x3a
 
 
 
#define Short_Sup           (ADDRESS_MODIFIER)0x2d
 
#define Short_NoPriv        (ADDRESS_MODIFIER)0x29
 
 
 
#define Ext_Sup_Data        (ADDRESS_MODIFIER)0x0d
 
#define Ext_Sup_Prog        (ADDRESS_MODIFIER)0x0e
 
#define Ext_NoPriv_Data     (ADDRESS_MODIFIER)0x09
 
#define Ext_NoPriv_Prog     (ADDRESS_MODIFIER)0x0a
 
 
 
#endif
 
 
 
//-------------------------------------------------------------------------------------------
 
//-------------------------------------------------------------------------------------------
 
//-------------------------------------------------------------------------------------------