You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
669 B
36 lines
669 B
// Includes the CPU specific cl_asm_*.h file.
|
|
|
|
#include "cln/config.h"
|
|
#include "cl_DS_endian.h"
|
|
|
|
#ifndef NO_ASM
|
|
|
|
#if defined(__m68k__) && (intCsize==16)
|
|
#include "cl_asm_m68k.h"
|
|
#endif
|
|
|
|
#if defined(__sparc__) && !defined(__sparc64__)
|
|
#include "cl_asm_sparc.h"
|
|
#endif
|
|
|
|
#if defined(__sparc64__)
|
|
#include "cl_asm_sparc64.h"
|
|
#endif
|
|
|
|
#if defined(__i386__)
|
|
#include "cl_asm_i386.h"
|
|
#endif
|
|
|
|
#if (defined(__mips__) || defined(__mipsel__)) && !defined(__mips64__) && (intDsize==32)
|
|
#include "cl_asm_mips.h"
|
|
#endif
|
|
|
|
#if defined(__hppa__) && (intDsize==32)
|
|
#include "cl_asm_hppa.h"
|
|
#endif
|
|
|
|
#if defined(__arm__)
|
|
#include "cl_asm_arm.h"
|
|
#endif
|
|
|
|
#endif // ndef NO_ASM
|