1 /*
2  * @ingroup   lib_emu68
3  * @file      emu68/lines68.h
4  * @brief     68k instructions header.
5  * @author    Benjamin Gerard
6  * @date      2009/05/08
7  */
8 
9 /* Copyright (c) 1998-2015 Benjamin Gerard */
10 
11 /* The lines68.h header file should include all files required for
12  * compiling instruction emulator files.
13  */
14 
15 #ifndef EMU68_LINES68_H
16 #define EMU68_LINES68_H
17 
18 #ifdef HAVE_CONFIG_H
19 # include "config.h"
20 #endif
21 
22 #include "assert68.h"
23 #include "excep68.h"
24 #include "emu68.h"
25 #include "inst68.h"
26 #include "macro68.h"
27 
28 #include "inl68_exception.h"
29 #include "inl68_arithmetic.h"
30 #include "inl68_bcd.h"
31 #include "inl68_bitmanip.h"
32 #include "inl68_datamove.h"
33 #include "inl68_logic.h"
34 #include "inl68_progctrl.h"
35 #include "inl68_shifting.h"
36 #include "inl68_systctrl.h"
37 
38 #endif
39