You've already forked smb-decomp
mirror of
https://github.com/encounter/smb-decomp.git
synced 2026-03-30 11:38:28 -07:00
23c5eef656
* start decompiling mot_ape.s * decompile more of mot_ape.s * decompile more of mot_ape.s * decompile more of mot_ape.s * could not match func_8008B3B8 * decompile more of mot_ape.s * decompile more of mot_ape.s * finish decompiling mot_ape.s * match func_8008B3B8 (thanks, EpochFlame) * clean up func_8008B3B8
33 lines
761 B
C
33 lines
761 B
C
#ifndef _DOLPHIN_TYPES_H_
|
|
#define _DOLPHIN_TYPES_H_
|
|
|
|
typedef signed char s8;
|
|
typedef unsigned char u8;
|
|
typedef signed short int s16;
|
|
typedef unsigned short int u16;
|
|
typedef signed long s32;
|
|
typedef unsigned long u32;
|
|
typedef signed long long int s64;
|
|
typedef unsigned long long int u64;
|
|
|
|
typedef float f32;
|
|
typedef double f64;
|
|
|
|
typedef int BOOL;
|
|
|
|
#define FALSE 0
|
|
#define TRUE 1
|
|
|
|
#if defined(__MWERKS__)
|
|
#define AT_ADDRESS(addr) : (addr)
|
|
#elif defined(__GNUC__)
|
|
//#define AT_ADDRESS(addr) __attribute__((address((addr))))
|
|
#define AT_ADDRESS(addr) // was removed in GCC. define in linker script instead.
|
|
#else
|
|
#error unknown compiler
|
|
#endif
|
|
|
|
#define ATTRIBUTE_ALIGN(num) __attribute__((aligned(num)))
|
|
|
|
#endif
|