mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
32 lines
778 B
C
32 lines
778 B
C
|
#ifndef __INCLUDE_ASM_LIBULTRA_H__
|
||
|
#define __INCLUDE_ASM_LIBULTRA_H__
|
||
|
|
||
|
#define STRINGIFY_(x) #x
|
||
|
#define STRINGIFY(x) STRINGIFY_(x)
|
||
|
|
||
|
#if !defined(SPLAT) && !defined(__CTX__) && !defined(PERMUTER)
|
||
|
#ifndef INCLUDE_ASM_LIBULTRA
|
||
|
#define INCLUDE_ASM_LIBULTRA(FOLDER, NAME) \
|
||
|
__asm__( \
|
||
|
".section .text\n" \
|
||
|
"\t.align\t2\n" \
|
||
|
"\t.globl\t"#NAME"\n" \
|
||
|
"\t.ent\t"#NAME"\n" \
|
||
|
#NAME ":\n" \
|
||
|
"\t.include \"ver/"STRINGIFY(VERSION)"/asm/os/"FOLDER"/"#NAME".s\"\n" \
|
||
|
"\t.set reorder\n" \
|
||
|
"\t.set at\n" \
|
||
|
"\t.end\t"#NAME \
|
||
|
);
|
||
|
#endif
|
||
|
__asm__(".include \"include/macro.inc\"\n");
|
||
|
#ifdef MOVE_ADDU
|
||
|
__asm__(".include \"include/move_addu.inc\"\n");
|
||
|
#endif
|
||
|
#else
|
||
|
#define INCLUDE_ASM_LIBULTRA(FOLDER, NAME)
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|