/*************************************************************************
 ** 68040.library                                                	**
 **                                                                     **
 ** CPU driver library for the 68040					**
 **                                                                     **
 ** © 1999 THOR-Software, Thomas Richter                                **
 ** No commercial use, reassembly, modification without prior, written  **
 ** permission of the authors.                                          **
 ** Including this library in any commercial software REQUIRES a        **
 ** written permission and the payment of a small fee.                  **
 **                                                                     **
 **---------------------------------------------------------------------**
 ** Definition of the library, and structures                           **
 ** Header 40.00                12.08.1999 © THOR                       **
 *************************************************************************/

#ifndef LIBRARIES_68040_H
#define LIBRARIES_68040_H

#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif

#ifndef EXEC_LIBRARIES_H
#include <exec/libraries.h>
#endif

#ifndef LIBRARIES_680X0_H
#include <libraries/680x0.h>
#endif

/* There's really nothing in this library base you need to care about */

struct MC68040Base {
        struct Library  dllib_Library;
        /* more below this point */
};

#define MC68040_NAME "68040.library"

#endif
