mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-05-21 09:42:13 +02:00
27 lines
476 B
C
27 lines
476 B
C
/* DAT.C */
|
|
|
|
/* z/Architecture support - (c) Copyright Jan Jaeger, 1999-2001 */
|
|
|
|
#include "hercules.h"
|
|
|
|
#if defined(OPTION_NO_INLINE_DAT) || defined(OPTION_NO_INLINE_LOGICAL)
|
|
|
|
#define _DAT_C
|
|
|
|
#include "opcode.h"
|
|
|
|
#include "inline.h"
|
|
|
|
#if !defined(_GEN_ARCH)
|
|
|
|
#define _GEN_ARCH 390
|
|
#include "dat.c"
|
|
|
|
#undef _GEN_ARCH
|
|
#define _GEN_ARCH 370
|
|
#include "dat.c"
|
|
|
|
#endif /*!defined(_GEN_ARCH)*/
|
|
|
|
#endif /*!defined(OPTION_NO_INLINE_DAT) || defined(OPTION_NO_INLINE_LOGICAL)*/
|