Super Mario 64s source code (from a leak on 4chan so be careful)
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.

34 lines
715 B

6 years ago
  1. #ifndef _ULTRA64_TYPES_H_
  2. #define _ULTRA64_TYPES_H_
  3. #ifndef NULL
  4. #define NULL (void *)0
  5. #endif
  6. #define TRUE 1
  7. #define FALSE 0
  8. typedef signed char s8;
  9. typedef unsigned char u8;
  10. typedef signed short int s16;
  11. typedef unsigned short int u16;
  12. typedef signed int s32;
  13. typedef unsigned int u32;
  14. typedef signed long long int s64;
  15. typedef unsigned long long int u64;
  16. typedef volatile u8 vu8;
  17. typedef volatile u16 vu16;
  18. typedef volatile u32 vu32;
  19. typedef volatile u64 vu64;
  20. typedef volatile s8 vs8;
  21. typedef volatile s16 vs16;
  22. typedef volatile s32 vs32;
  23. typedef volatile s64 vs64;
  24. typedef float f32;
  25. typedef double f64;
  26. typedef unsigned long size_t;
  27. #endif