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.

17 lines
322 B

6 years ago
  1. #ifndef _LIBULTRA_H
  2. #define _LIBULTRA_H
  3. #define TV_TYPE_NTSC 1
  4. #define TV_TYPE_PAL 0
  5. #define TV_TYPE_MPAL 2
  6. #define RESET_TYPE_COLD_RESET 0
  7. #define RESET_TYPE_NMI 1
  8. #define RESET_TYPE_BOOT_DISK 2
  9. extern u32 osTvType;
  10. extern u32 osRomBase;
  11. extern u32 osResetType;
  12. extern u8 osAppNmiBuffer[64];
  13. #endif /* _LIBULTRA_H */